gorm

package
v0.0.0-...-fafdb79 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 24, 2024 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	AssociationType_name = map[int32]string{
		0: "ASSOCIATION_UNDEFINED",
		1: "BELONGS_TO",
		2: "HAS_ONE",
		3: "HAS_MANY",
		4: "MANY_TO_MANY",
	}
	AssociationType_value = map[string]int32{
		"ASSOCIATION_UNDEFINED": 0,
		"BELONGS_TO":            1,
		"HAS_ONE":               2,
		"HAS_MANY":              3,
		"MANY_TO_MANY":          4,
	}
)

Enum value maps for AssociationType.

View Source
var (
	// optional gorm.GormFieldOptions field = 52119;
	E_Field = &file_options_gorm_proto_extTypes[2]
)

Extension fields to descriptorpb.FieldOptions.

View Source
var (
	// optional gorm.GormFileOptions file_opts = 52119;
	E_FileOpts = &file_options_gorm_proto_extTypes[0]
)

Extension fields to descriptorpb.FileOptions.

View Source
var (
	// ormable will cause orm code to be generated for this message/object
	//
	// optional gorm.GormMessageOptions opts = 52119;
	E_Opts = &file_options_gorm_proto_extTypes[1]
)

Extension fields to descriptorpb.MessageOptions.

View Source
var File_options_gorm_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AssociationType

type AssociationType int32
const (
	AssociationType_ASSOCIATION_UNDEFINED AssociationType = 0
	AssociationType_BELONGS_TO            AssociationType = 1
	AssociationType_HAS_ONE               AssociationType = 2
	AssociationType_HAS_MANY              AssociationType = 3
	AssociationType_MANY_TO_MANY          AssociationType = 4
)

func (AssociationType) Descriptor

func (AssociationType) Enum

func (x AssociationType) Enum() *AssociationType

func (AssociationType) EnumDescriptor deprecated

func (AssociationType) EnumDescriptor() ([]byte, []int)

Deprecated: Use AssociationType.Descriptor instead.

func (AssociationType) Number

func (AssociationType) String

func (x AssociationType) String() string

func (AssociationType) Type

type BelongsToOptions

type BelongsToOptions struct {
	Foreignkey                   string   `protobuf:"bytes,1,opt,name=foreignkey,proto3" json:"foreignkey,omitempty"`
	ForeignkeyTag                *GormTag `protobuf:"bytes,2,opt,name=foreignkey_tag,json=foreignkeyTag,proto3" json:"foreignkey_tag,omitempty"`
	AssociationForeignkey        string   `protobuf:"bytes,3,opt,name=association_foreignkey,json=associationForeignkey,proto3" json:"association_foreignkey,omitempty"`
	DisableAssociationAutoupdate bool     `` /* 148-byte string literal not displayed */
	DisableAssociationAutocreate bool     `` /* 148-byte string literal not displayed */
	AssociationSaveReference     bool     `` /* 136-byte string literal not displayed */
	Preload                      bool     `protobuf:"varint,7,opt,name=preload,proto3" json:"preload,omitempty"`
	// contains filtered or unexported fields
}

func (*BelongsToOptions) Descriptor deprecated

func (*BelongsToOptions) Descriptor() ([]byte, []int)

Deprecated: Use BelongsToOptions.ProtoReflect.Descriptor instead.

func (*BelongsToOptions) GetAssociationForeignkey

func (x *BelongsToOptions) GetAssociationForeignkey() string

func (*BelongsToOptions) GetAssociationSaveReference

func (x *BelongsToOptions) GetAssociationSaveReference() bool

func (*BelongsToOptions) GetDisableAssociationAutocreate

func (x *BelongsToOptions) GetDisableAssociationAutocreate() bool

func (*BelongsToOptions) GetDisableAssociationAutoupdate

func (x *BelongsToOptions) GetDisableAssociationAutoupdate() bool

func (*BelongsToOptions) GetForeignkey

func (x *BelongsToOptions) GetForeignkey() string

func (*BelongsToOptions) GetForeignkeyTag

func (x *BelongsToOptions) GetForeignkeyTag() *GormTag

func (*BelongsToOptions) GetPreload

func (x *BelongsToOptions) GetPreload() bool

func (*BelongsToOptions) ProtoMessage

func (*BelongsToOptions) ProtoMessage()

func (*BelongsToOptions) ProtoReflect

func (x *BelongsToOptions) ProtoReflect() protoreflect.Message

func (*BelongsToOptions) Reset

func (x *BelongsToOptions) Reset()

func (*BelongsToOptions) String

func (x *BelongsToOptions) String() string

type GormFieldOptions

type GormFieldOptions struct {
	GormTag            string             `protobuf:"bytes,1,opt,name=gorm_tag,json=gormTag,proto3" json:"gorm_tag,omitempty"`
	HasOne             *HasOneOptions     `protobuf:"bytes,3,opt,name=has_one,json=hasOne,proto3" json:"has_one,omitempty"`
	BelongsTo          *BelongsToOptions  `protobuf:"bytes,4,opt,name=belongs_to,json=belongsTo,proto3" json:"belongs_to,omitempty"`
	HasMany            *HasManyOptions    `protobuf:"bytes,5,opt,name=has_many,json=hasMany,proto3" json:"has_many,omitempty"`
	ManyToMany         *ManyToManyOptions `protobuf:"bytes,6,opt,name=many_to_many,json=manyToMany,proto3" json:"many_to_many,omitempty"`
	Ignore             bool               `protobuf:"varint,7,opt,name=ignore,proto3" json:"ignore,omitempty"`
	EnumAsString       bool               `protobuf:"varint,8,opt,name=enum_as_string,json=enumAsString,proto3" json:"enum_as_string,omitempty"`
	OnUpdate           string             `protobuf:"bytes,9,opt,name=on_update,json=onUpdate,proto3" json:"on_update,omitempty"`
	OnDelete           string             `protobuf:"bytes,10,opt,name=on_delete,json=onDelete,proto3" json:"on_delete,omitempty"`
	TimeFormatOverride string             `protobuf:"bytes,11,opt,name=time_format_override,json=timeFormatOverride,proto3" json:"time_format_override,omitempty"`
	Jsonb              bool               `protobuf:"varint,12,opt,name=jsonb,proto3" json:"jsonb,omitempty"`
	Import             string             `protobuf:"bytes,13,opt,name=import,proto3" json:"import,omitempty"`
	Pointer            bool               `protobuf:"varint,14,opt,name=pointer,proto3" json:"pointer,omitempty"`
	// contains filtered or unexported fields
}

func (*GormFieldOptions) Descriptor deprecated

func (*GormFieldOptions) Descriptor() ([]byte, []int)

Deprecated: Use GormFieldOptions.ProtoReflect.Descriptor instead.

func (*GormFieldOptions) GetBelongsTo

func (x *GormFieldOptions) GetBelongsTo() *BelongsToOptions

func (*GormFieldOptions) GetEnumAsString

func (x *GormFieldOptions) GetEnumAsString() bool

func (*GormFieldOptions) GetGormTag

func (x *GormFieldOptions) GetGormTag() string

func (*GormFieldOptions) GetHasMany

func (x *GormFieldOptions) GetHasMany() *HasManyOptions

func (*GormFieldOptions) GetHasOne

func (x *GormFieldOptions) GetHasOne() *HasOneOptions

func (*GormFieldOptions) GetIgnore

func (x *GormFieldOptions) GetIgnore() bool

func (*GormFieldOptions) GetImport

func (x *GormFieldOptions) GetImport() string

func (*GormFieldOptions) GetJsonb

func (x *GormFieldOptions) GetJsonb() bool

func (*GormFieldOptions) GetManyToMany

func (x *GormFieldOptions) GetManyToMany() *ManyToManyOptions

func (*GormFieldOptions) GetOnDelete

func (x *GormFieldOptions) GetOnDelete() string

func (*GormFieldOptions) GetOnUpdate

func (x *GormFieldOptions) GetOnUpdate() string

func (*GormFieldOptions) GetPointer

func (x *GormFieldOptions) GetPointer() bool

func (*GormFieldOptions) GetTimeFormatOverride

func (x *GormFieldOptions) GetTimeFormatOverride() string

func (*GormFieldOptions) ProtoMessage

func (*GormFieldOptions) ProtoMessage()

func (*GormFieldOptions) ProtoReflect

func (x *GormFieldOptions) ProtoReflect() protoreflect.Message

func (*GormFieldOptions) Reset

func (x *GormFieldOptions) Reset()

func (*GormFieldOptions) String

func (x *GormFieldOptions) String() string

type GormFileOptions

type GormFileOptions struct {
	// contains filtered or unexported fields
}

func (*GormFileOptions) Descriptor deprecated

func (*GormFileOptions) Descriptor() ([]byte, []int)

Deprecated: Use GormFileOptions.ProtoReflect.Descriptor instead.

func (*GormFileOptions) ProtoMessage

func (*GormFileOptions) ProtoMessage()

func (*GormFileOptions) ProtoReflect

func (x *GormFileOptions) ProtoReflect() protoreflect.Message

func (*GormFileOptions) Reset

func (x *GormFileOptions) Reset()

func (*GormFileOptions) String

func (x *GormFileOptions) String() string

type GormMessageOptions

type GormMessageOptions struct {
	Ormable bool   `protobuf:"varint,1,opt,name=ormable,proto3" json:"ormable,omitempty"`
	Table   string `protobuf:"bytes,3,opt,name=table,proto3" json:"table,omitempty"`
	// contains filtered or unexported fields
}

func (*GormMessageOptions) Descriptor deprecated

func (*GormMessageOptions) Descriptor() ([]byte, []int)

Deprecated: Use GormMessageOptions.ProtoReflect.Descriptor instead.

func (*GormMessageOptions) GetOrmable

func (x *GormMessageOptions) GetOrmable() bool

func (*GormMessageOptions) GetTable

func (x *GormMessageOptions) GetTable() string

func (*GormMessageOptions) ProtoMessage

func (*GormMessageOptions) ProtoMessage()

func (*GormMessageOptions) ProtoReflect

func (x *GormMessageOptions) ProtoReflect() protoreflect.Message

func (*GormMessageOptions) Reset

func (x *GormMessageOptions) Reset()

func (*GormMessageOptions) String

func (x *GormMessageOptions) String() string

type GormTag

type GormTag struct {
	Column                         string `protobuf:"bytes,1,opt,name=column,proto3" json:"column,omitempty"`
	Type                           string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	Size                           int32  `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
	Precision                      int32  `protobuf:"varint,4,opt,name=precision,proto3" json:"precision,omitempty"`
	PrimaryKey                     bool   `protobuf:"varint,5,opt,name=primary_key,json=primaryKey,proto3" json:"primary_key,omitempty"`
	Unique                         bool   `protobuf:"varint,6,opt,name=unique,proto3" json:"unique,omitempty"`
	Default                        string `protobuf:"bytes,7,opt,name=default,proto3" json:"default,omitempty"`
	NotNull                        bool   `protobuf:"varint,8,opt,name=not_null,json=notNull,proto3" json:"not_null,omitempty"`
	AutoIncrement                  bool   `protobuf:"varint,9,opt,name=auto_increment,json=autoIncrement,proto3" json:"auto_increment,omitempty"`
	Index                          string `protobuf:"bytes,10,opt,name=index,proto3" json:"index,omitempty"`
	UniqueIndex                    string `protobuf:"bytes,11,opt,name=unique_index,json=uniqueIndex,proto3" json:"unique_index,omitempty"`
	Embedded                       bool   `protobuf:"varint,12,opt,name=embedded,proto3" json:"embedded,omitempty"`
	EmbeddedPrefix                 string `protobuf:"bytes,13,opt,name=embedded_prefix,json=embeddedPrefix,proto3" json:"embedded_prefix,omitempty"`
	Ignore                         bool   `protobuf:"varint,14,opt,name=ignore,proto3" json:"ignore,omitempty"`
	Foreignkey                     string `protobuf:"bytes,15,opt,name=foreignkey,proto3" json:"foreignkey,omitempty"`
	AssociationForeignkey          string `protobuf:"bytes,16,opt,name=association_foreignkey,json=associationForeignkey,proto3" json:"association_foreignkey,omitempty"`
	ManyToMany                     string `protobuf:"bytes,17,opt,name=many_to_many,json=manyToMany,proto3" json:"many_to_many,omitempty"`
	JointableForeignkey            string `protobuf:"bytes,18,opt,name=jointable_foreignkey,json=jointableForeignkey,proto3" json:"jointable_foreignkey,omitempty"`
	AssociationJointableForeignkey string `` /* 154-byte string literal not displayed */
	DisableAssociationAutoupdate   bool   `` /* 149-byte string literal not displayed */
	DisableAssociationAutocreate   bool   `` /* 149-byte string literal not displayed */
	AssociationSaveReference       bool   `` /* 137-byte string literal not displayed */
	Preload                        bool   `protobuf:"varint,23,opt,name=preload,proto3" json:"preload,omitempty"`
	Serializer                     string `protobuf:"bytes,24,opt,name=serializer,proto3" json:"serializer,omitempty"`
	// contains filtered or unexported fields
}

func (*GormTag) Descriptor deprecated

func (*GormTag) Descriptor() ([]byte, []int)

Deprecated: Use GormTag.ProtoReflect.Descriptor instead.

func (*GormTag) GetAssociationForeignkey

func (x *GormTag) GetAssociationForeignkey() string

func (*GormTag) GetAssociationJointableForeignkey

func (x *GormTag) GetAssociationJointableForeignkey() string

func (*GormTag) GetAssociationSaveReference

func (x *GormTag) GetAssociationSaveReference() bool

func (*GormTag) GetAutoIncrement

func (x *GormTag) GetAutoIncrement() bool

func (*GormTag) GetColumn

func (x *GormTag) GetColumn() string

func (*GormTag) GetDefault

func (x *GormTag) GetDefault() string

func (*GormTag) GetDisableAssociationAutocreate

func (x *GormTag) GetDisableAssociationAutocreate() bool

func (*GormTag) GetDisableAssociationAutoupdate

func (x *GormTag) GetDisableAssociationAutoupdate() bool

func (*GormTag) GetEmbedded

func (x *GormTag) GetEmbedded() bool

func (*GormTag) GetEmbeddedPrefix

func (x *GormTag) GetEmbeddedPrefix() string

func (*GormTag) GetForeignkey

func (x *GormTag) GetForeignkey() string

func (*GormTag) GetIgnore

func (x *GormTag) GetIgnore() bool

func (*GormTag) GetIndex

func (x *GormTag) GetIndex() string

func (*GormTag) GetJointableForeignkey

func (x *GormTag) GetJointableForeignkey() string

func (*GormTag) GetManyToMany

func (x *GormTag) GetManyToMany() string

func (*GormTag) GetNotNull

func (x *GormTag) GetNotNull() bool

func (*GormTag) GetPrecision

func (x *GormTag) GetPrecision() int32

func (*GormTag) GetPreload

func (x *GormTag) GetPreload() bool

func (*GormTag) GetPrimaryKey

func (x *GormTag) GetPrimaryKey() bool

func (*GormTag) GetSerializer

func (x *GormTag) GetSerializer() string

func (*GormTag) GetSize

func (x *GormTag) GetSize() int32

func (*GormTag) GetType

func (x *GormTag) GetType() string

func (*GormTag) GetUnique

func (x *GormTag) GetUnique() bool

func (*GormTag) GetUniqueIndex

func (x *GormTag) GetUniqueIndex() string

func (*GormTag) ProtoMessage

func (*GormTag) ProtoMessage()

func (*GormTag) ProtoReflect

func (x *GormTag) ProtoReflect() protoreflect.Message

func (*GormTag) Reset

func (x *GormTag) Reset()

func (*GormTag) String

func (x *GormTag) String() string

type HasManyOptions

type HasManyOptions struct {
	Foreignkey                   string   `protobuf:"bytes,1,opt,name=foreignkey,proto3" json:"foreignkey,omitempty"`
	ForeignkeyTag                *GormTag `protobuf:"bytes,2,opt,name=foreignkey_tag,json=foreignkeyTag,proto3" json:"foreignkey_tag,omitempty"`
	AssociationForeignkey        string   `protobuf:"bytes,3,opt,name=association_foreignkey,json=associationForeignkey,proto3" json:"association_foreignkey,omitempty"`
	PositionField                string   `protobuf:"bytes,4,opt,name=position_field,json=positionField,proto3" json:"position_field,omitempty"`
	PositionFieldTag             *GormTag `protobuf:"bytes,5,opt,name=position_field_tag,json=positionFieldTag,proto3" json:"position_field_tag,omitempty"`
	DisableAssociationAutoupdate bool     `` /* 148-byte string literal not displayed */
	DisableAssociationAutocreate bool     `` /* 148-byte string literal not displayed */
	AssociationSaveReference     bool     `` /* 136-byte string literal not displayed */
	Preload                      bool     `protobuf:"varint,9,opt,name=preload,proto3" json:"preload,omitempty"`
	Replace                      bool     `protobuf:"varint,10,opt,name=replace,proto3" json:"replace,omitempty"`
	Append                       bool     `protobuf:"varint,11,opt,name=append,proto3" json:"append,omitempty"`
	Clear                        bool     `protobuf:"varint,12,opt,name=clear,proto3" json:"clear,omitempty"`
	// contains filtered or unexported fields
}

func (*HasManyOptions) Descriptor deprecated

func (*HasManyOptions) Descriptor() ([]byte, []int)

Deprecated: Use HasManyOptions.ProtoReflect.Descriptor instead.

func (*HasManyOptions) GetAppend

func (x *HasManyOptions) GetAppend() bool

func (*HasManyOptions) GetAssociationForeignkey

func (x *HasManyOptions) GetAssociationForeignkey() string

func (*HasManyOptions) GetAssociationSaveReference

func (x *HasManyOptions) GetAssociationSaveReference() bool

func (*HasManyOptions) GetClear

func (x *HasManyOptions) GetClear() bool

func (*HasManyOptions) GetDisableAssociationAutocreate

func (x *HasManyOptions) GetDisableAssociationAutocreate() bool

func (*HasManyOptions) GetDisableAssociationAutoupdate

func (x *HasManyOptions) GetDisableAssociationAutoupdate() bool

func (*HasManyOptions) GetForeignkey

func (x *HasManyOptions) GetForeignkey() string

func (*HasManyOptions) GetForeignkeyTag

func (x *HasManyOptions) GetForeignkeyTag() *GormTag

func (*HasManyOptions) GetPositionField

func (x *HasManyOptions) GetPositionField() string

func (*HasManyOptions) GetPositionFieldTag

func (x *HasManyOptions) GetPositionFieldTag() *GormTag

func (*HasManyOptions) GetPreload

func (x *HasManyOptions) GetPreload() bool

func (*HasManyOptions) GetReplace

func (x *HasManyOptions) GetReplace() bool

func (*HasManyOptions) ProtoMessage

func (*HasManyOptions) ProtoMessage()

func (*HasManyOptions) ProtoReflect

func (x *HasManyOptions) ProtoReflect() protoreflect.Message

func (*HasManyOptions) Reset

func (x *HasManyOptions) Reset()

func (*HasManyOptions) String

func (x *HasManyOptions) String() string

type HasOneOptions

type HasOneOptions struct {
	Foreignkey                   string   `protobuf:"bytes,1,opt,name=foreignkey,proto3" json:"foreignkey,omitempty"`
	ForeignkeyTag                *GormTag `protobuf:"bytes,2,opt,name=foreignkey_tag,json=foreignkeyTag,proto3" json:"foreignkey_tag,omitempty"`
	AssociationForeignkey        string   `protobuf:"bytes,3,opt,name=association_foreignkey,json=associationForeignkey,proto3" json:"association_foreignkey,omitempty"`
	DisableAssociationAutoupdate bool     `` /* 148-byte string literal not displayed */
	DisableAssociationAutocreate bool     `` /* 148-byte string literal not displayed */
	AssociationSaveReference     bool     `` /* 136-byte string literal not displayed */
	Preload                      bool     `protobuf:"varint,7,opt,name=preload,proto3" json:"preload,omitempty"`
	Replace                      bool     `protobuf:"varint,8,opt,name=replace,proto3" json:"replace,omitempty"`
	Append                       bool     `protobuf:"varint,9,opt,name=append,proto3" json:"append,omitempty"`
	Clear                        bool     `protobuf:"varint,10,opt,name=clear,proto3" json:"clear,omitempty"`
	// contains filtered or unexported fields
}

func (*HasOneOptions) Descriptor deprecated

func (*HasOneOptions) Descriptor() ([]byte, []int)

Deprecated: Use HasOneOptions.ProtoReflect.Descriptor instead.

func (*HasOneOptions) GetAppend

func (x *HasOneOptions) GetAppend() bool

func (*HasOneOptions) GetAssociationForeignkey

func (x *HasOneOptions) GetAssociationForeignkey() string

func (*HasOneOptions) GetAssociationSaveReference

func (x *HasOneOptions) GetAssociationSaveReference() bool

func (*HasOneOptions) GetClear

func (x *HasOneOptions) GetClear() bool

func (*HasOneOptions) GetDisableAssociationAutocreate

func (x *HasOneOptions) GetDisableAssociationAutocreate() bool

func (*HasOneOptions) GetDisableAssociationAutoupdate

func (x *HasOneOptions) GetDisableAssociationAutoupdate() bool

func (*HasOneOptions) GetForeignkey

func (x *HasOneOptions) GetForeignkey() string

func (*HasOneOptions) GetForeignkeyTag

func (x *HasOneOptions) GetForeignkeyTag() *GormTag

func (*HasOneOptions) GetPreload

func (x *HasOneOptions) GetPreload() bool

func (*HasOneOptions) GetReplace

func (x *HasOneOptions) GetReplace() bool

func (*HasOneOptions) ProtoMessage

func (*HasOneOptions) ProtoMessage()

func (*HasOneOptions) ProtoReflect

func (x *HasOneOptions) ProtoReflect() protoreflect.Message

func (*HasOneOptions) Reset

func (x *HasOneOptions) Reset()

func (*HasOneOptions) String

func (x *HasOneOptions) String() string

type ManyToManyOptions

type ManyToManyOptions struct {
	Jointable                      string `protobuf:"bytes,1,opt,name=jointable,proto3" json:"jointable,omitempty"`
	Foreignkey                     string `protobuf:"bytes,2,opt,name=foreignkey,proto3" json:"foreignkey,omitempty"`
	JointableForeignkey            string `protobuf:"bytes,3,opt,name=jointable_foreignkey,json=jointableForeignkey,proto3" json:"jointable_foreignkey,omitempty"`
	AssociationForeignkey          string `protobuf:"bytes,4,opt,name=association_foreignkey,json=associationForeignkey,proto3" json:"association_foreignkey,omitempty"`
	AssociationJointableForeignkey string `` /* 153-byte string literal not displayed */
	DisableAssociationAutoupdate   bool   `` /* 148-byte string literal not displayed */
	DisableAssociationAutocreate   bool   `` /* 148-byte string literal not displayed */
	AssociationSaveReference       bool   `` /* 136-byte string literal not displayed */
	Preload                        bool   `protobuf:"varint,9,opt,name=preload,proto3" json:"preload,omitempty"`
	Replace                        bool   `protobuf:"varint,10,opt,name=replace,proto3" json:"replace,omitempty"`
	Append                         bool   `protobuf:"varint,11,opt,name=append,proto3" json:"append,omitempty"`
	Clear                          bool   `protobuf:"varint,13,opt,name=clear,proto3" json:"clear,omitempty"`
	// contains filtered or unexported fields
}

func (*ManyToManyOptions) Descriptor deprecated

func (*ManyToManyOptions) Descriptor() ([]byte, []int)

Deprecated: Use ManyToManyOptions.ProtoReflect.Descriptor instead.

func (*ManyToManyOptions) GetAppend

func (x *ManyToManyOptions) GetAppend() bool

func (*ManyToManyOptions) GetAssociationForeignkey

func (x *ManyToManyOptions) GetAssociationForeignkey() string

func (*ManyToManyOptions) GetAssociationJointableForeignkey

func (x *ManyToManyOptions) GetAssociationJointableForeignkey() string

func (*ManyToManyOptions) GetAssociationSaveReference

func (x *ManyToManyOptions) GetAssociationSaveReference() bool

func (*ManyToManyOptions) GetClear

func (x *ManyToManyOptions) GetClear() bool

func (*ManyToManyOptions) GetDisableAssociationAutocreate

func (x *ManyToManyOptions) GetDisableAssociationAutocreate() bool

func (*ManyToManyOptions) GetDisableAssociationAutoupdate

func (x *ManyToManyOptions) GetDisableAssociationAutoupdate() bool

func (*ManyToManyOptions) GetForeignkey

func (x *ManyToManyOptions) GetForeignkey() string

func (*ManyToManyOptions) GetJointable

func (x *ManyToManyOptions) GetJointable() string

func (*ManyToManyOptions) GetJointableForeignkey

func (x *ManyToManyOptions) GetJointableForeignkey() string

func (*ManyToManyOptions) GetPreload

func (x *ManyToManyOptions) GetPreload() bool

func (*ManyToManyOptions) GetReplace

func (x *ManyToManyOptions) GetReplace() bool

func (*ManyToManyOptions) ProtoMessage

func (*ManyToManyOptions) ProtoMessage()

func (*ManyToManyOptions) ProtoReflect

func (x *ManyToManyOptions) ProtoReflect() protoreflect.Message

func (*ManyToManyOptions) Reset

func (x *ManyToManyOptions) Reset()

func (*ManyToManyOptions) String

func (x *ManyToManyOptions) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL