Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // WithGlobalUniqueID sets the universal ids options to the migration. // If this option is enabled, ent migration will allocate a 1<<32 range // for the ids of each entity (table). // Note that this option cannot be applied on tables that already exist. WithGlobalUniqueID = schema.WithGlobalUniqueID // WithDropColumn sets the drop column option to the migration. // If this option is enabled, ent migration will drop old columns // that were used for both fields and edges. This defaults to false. WithDropColumn = schema.WithDropColumn // WithDropIndex sets the drop index option to the migration. // If this option is enabled, ent migration will drop old indexes // that were defined in the schema. This defaults to false. // Note that unique constraints are defined using `UNIQUE INDEX`, // and therefore, it's recommended to enable this option to get more // flexibility in the schema changes. WithDropIndex = schema.WithDropIndex // WithForeignKeys enables creating foreign-key in schema DDL. This defaults to true. WithForeignKeys = schema.WithForeignKeys )
View Source
var ( // BlogsColumns holds the columns for the "blogs" table. BlogsColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true, SchemaType: map[string]string{"postgres": "serial"}}, } // BlogsTable holds the schema information for the "blogs" table. BlogsTable = &schema.Table{ Name: "blogs", Columns: BlogsColumns, PrimaryKey: []*schema.Column{BlogsColumns[0]}, } // CarColumns holds the columns for the "Car" table. CarColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "name", Type: field.TypeString, Unique: true, Nullable: true}, {Name: "user_car", Type: field.TypeInt}, } // CarTable holds the schema information for the "Car" table. CarTable = &schema.Table{ Name: "Car", Columns: CarColumns, PrimaryKey: []*schema.Column{CarColumns[0]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "Car_users_car", Columns: []*schema.Column{CarColumns[2]}, RefColumns: []*schema.Column{UsersColumns[0]}, OnDelete: schema.NoAction, }, }, } // ConversionsColumns holds the columns for the "conversions" table. ConversionsColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "name", Type: field.TypeString, Nullable: true}, {Name: "int8_to_string", Type: field.TypeString, Nullable: true, Size: 6}, {Name: "uint8_to_string", Type: field.TypeString, Nullable: true, Size: 6}, {Name: "int16_to_string", Type: field.TypeString, Nullable: true, Size: 6}, {Name: "uint16_to_string", Type: field.TypeString, Nullable: true, Size: 6}, {Name: "int32_to_string", Type: field.TypeString, Nullable: true, Size: 12}, {Name: "uint32_to_string", Type: field.TypeString, Nullable: true, Size: 12}, {Name: "int64_to_string", Type: field.TypeString, Nullable: true, Size: 21}, {Name: "uint64_to_string", Type: field.TypeString, Nullable: true, Size: 21}, } // ConversionsTable holds the schema information for the "conversions" table. ConversionsTable = &schema.Table{ Name: "conversions", Columns: ConversionsColumns, PrimaryKey: []*schema.Column{ConversionsColumns[0]}, } // CustomTypesColumns holds the columns for the "custom_types" table. CustomTypesColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "custom", Type: field.TypeString, Nullable: true, SchemaType: map[string]string{"postgres": "customtype"}}, {Name: "tz0", Type: field.TypeTime, Nullable: true, SchemaType: map[string]string{"mysql": "timestamp(0)", "postgres": "timestamptz(0)"}}, {Name: "tz3", Type: field.TypeTime, Nullable: true, SchemaType: map[string]string{"mysql": "timestamp(3)", "postgres": "timestamptz(3)"}}, } // CustomTypesTable holds the schema information for the "custom_types" table. CustomTypesTable = &schema.Table{ Name: "custom_types", Columns: CustomTypesColumns, PrimaryKey: []*schema.Column{CustomTypesColumns[0]}, } // GroupsColumns holds the columns for the "groups" table. GroupsColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, } // GroupsTable holds the schema information for the "groups" table. GroupsTable = &schema.Table{ Name: "groups", Columns: GroupsColumns, PrimaryKey: []*schema.Column{GroupsColumns[0]}, } // MediaColumns holds the columns for the "media" table. MediaColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "source", Type: field.TypeString, Nullable: true}, {Name: "source_uri", Type: field.TypeString, Nullable: true}, {Name: "text", Type: field.TypeString, Nullable: true, Size: 2147483647}, } // MediaTable holds the schema information for the "media" table. MediaTable = &schema.Table{ Name: "media", Columns: MediaColumns, PrimaryKey: []*schema.Column{MediaColumns[0]}, Indexes: []*schema.Index{ { Name: "media_source_source_uri", Unique: true, Columns: []*schema.Column{MediaColumns[1], MediaColumns[2]}, Annotation: &entsql.IndexAnnotation{ PrefixColumns: map[string]uint{ MediaColumns[1].Name: 100, }, }, }, { Name: "media_text", Unique: false, Columns: []*schema.Column{MediaColumns[3]}, Annotation: &entsql.IndexAnnotation{ Prefix: 100, }, }, }, } // PetsColumns holds the columns for the "pets" table. PetsColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "name", Type: field.TypeString, Unique: true, Nullable: true}, {Name: "owner_id", Type: field.TypeInt, Unique: true, Nullable: true}, } // PetsTable holds the schema information for the "pets" table. PetsTable = &schema.Table{ Name: "pets", Columns: PetsColumns, PrimaryKey: []*schema.Column{PetsColumns[0]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "user_pet_id", Columns: []*schema.Column{PetsColumns[2]}, RefColumns: []*schema.Column{UsersColumns[0]}, OnDelete: schema.SetNull, }, }, } // UsersColumns holds the columns for the "users" table. UsersColumns = []*schema.Column{ {Name: "oid", Type: field.TypeInt, Increment: true}, {Name: "mixed_string", Type: field.TypeString, Default: "default"}, {Name: "mixed_enum", Type: field.TypeEnum, Enums: []string{"on", "off"}, Default: "on"}, {Name: "active", Type: field.TypeBool, Default: true}, {Name: "age", Type: field.TypeInt}, {Name: "name", Type: field.TypeString, Size: 2147483647}, {Name: "description", Type: field.TypeString, Nullable: true, Size: 2147483647}, {Name: "nickname", Type: field.TypeString, Size: 255}, {Name: "phone", Type: field.TypeString, Default: "unknown"}, {Name: "buffer", Type: field.TypeBytes, Nullable: true}, {Name: "title", Type: field.TypeString, Default: "SWE"}, {Name: "renamed", Type: field.TypeString, Nullable: true}, {Name: "new_token", Type: field.TypeString}, {Name: "blob", Type: field.TypeBytes, Nullable: true, Size: 1000}, {Name: "state", Type: field.TypeEnum, Nullable: true, Enums: []string{"logged_in", "logged_out", "online"}, Default: "logged_in"}, {Name: "status", Type: field.TypeEnum, Nullable: true, Enums: []string{"done", "pending"}}, {Name: "workplace", Type: field.TypeString, Nullable: true}, {Name: "created_at", Type: field.TypeTime, Default: "CURRENT_TIMESTAMP"}, {Name: "drop_optional", Type: field.TypeString}, {Name: "blog_admins", Type: field.TypeInt, Nullable: true, SchemaType: map[string]string{"postgres": "serial"}}, } // UsersTable holds the schema information for the "users" table. UsersTable = &schema.Table{ Name: "users", Columns: UsersColumns, PrimaryKey: []*schema.Column{UsersColumns[0]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "users_blogs_admins", Columns: []*schema.Column{UsersColumns[19]}, RefColumns: []*schema.Column{BlogsColumns[0]}, OnDelete: schema.SetNull, }, }, Indexes: []*schema.Index{ { Name: "user_description", Unique: false, Columns: []*schema.Column{UsersColumns[6]}, Annotation: &entsql.IndexAnnotation{ Prefix: 100, }, }, { Name: "user_phone_age", Unique: true, Columns: []*schema.Column{UsersColumns[8], UsersColumns[4]}, }, { Name: "user_age", Unique: false, Columns: []*schema.Column{UsersColumns[4]}, Annotation: &entsql.IndexAnnotation{ Desc: true, }, }, { Name: "user_nickname", Unique: false, Columns: []*schema.Column{UsersColumns[7]}, Annotation: &entsql.IndexAnnotation{ Types: map[string]string{ "mysql": "FULLTEXT", }, }, }, { Name: "user_workplace", Unique: false, Columns: []*schema.Column{UsersColumns[16]}, Annotation: &entsql.IndexAnnotation{ IncludeColumns: []string{ UsersColumns[7].Name, }, }, }, { Name: "user_phone", Unique: false, Columns: []*schema.Column{UsersColumns[8]}, Annotation: &entsql.IndexAnnotation{ Where: "active", }, }, }, } // FriendsColumns holds the columns for the "friends" table. FriendsColumns = []*schema.Column{ {Name: "user", Type: field.TypeInt}, {Name: "friend", Type: field.TypeInt}, } // FriendsTable holds the schema information for the "friends" table. FriendsTable = &schema.Table{ Name: "friends", Columns: FriendsColumns, PrimaryKey: []*schema.Column{FriendsColumns[0], FriendsColumns[1]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "user_friend_id1", Columns: []*schema.Column{FriendsColumns[0]}, RefColumns: []*schema.Column{UsersColumns[0]}, OnDelete: schema.Cascade, }, { Symbol: "user_friend_id2", Columns: []*schema.Column{FriendsColumns[1]}, RefColumns: []*schema.Column{UsersColumns[0]}, OnDelete: schema.Cascade, }, }, } // Tables holds all the tables in the schema. Tables = []*schema.Table{ BlogsTable, CarTable, ConversionsTable, CustomTypesTable, GroupsTable, MediaTable, PetsTable, UsersTable, FriendsTable, } )
Functions ¶
Types ¶
type Schema ¶
type Schema struct {
// contains filtered or unexported fields
}
Schema is the API for creating, migrating and dropping a schema.
Click to show internal directories.
Click to hide internal directories.