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 // WithFixture sets the foreign-key renaming option to the migration when upgrading // ent from v0.1.0 (issue-#285). Defaults to false. WithFixture = schema.WithFixture // WithForeignKeys enables creating foreign-key in schema DDL. This defaults to true. WithForeignKeys = schema.WithForeignKeys )
View Source
var ( // MenuColumns holds the columns for the "menu" table. MenuColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt64, Increment: true}, {Name: "created_at", Type: field.TypeTime}, {Name: "updated_at", Type: field.TypeTime}, {Name: "deleted_at", Type: field.TypeTime, Nullable: true}, {Name: "permission", Type: field.TypeString, Unique: true, Size: 32}, {Name: "path", Type: field.TypeString, Nullable: true, Size: 128}, {Name: "name", Type: field.TypeString, Size: 32}, {Name: "icon", Type: field.TypeString, Nullable: true, Size: 32}, {Name: "sort", Type: field.TypeInt, Default: 0}, {Name: "enable", Type: field.TypeString, Size: 1, Default: "0"}, {Name: "type", Type: field.TypeString, Nullable: true, Size: 1}, {Name: "menu_children", Type: field.TypeInt64, Nullable: true}, {Name: "role_menu", Type: field.TypeInt64, Nullable: true}, } // MenuTable holds the schema information for the "menu" table. MenuTable = &schema.Table{ Name: "menu", Columns: MenuColumns, PrimaryKey: []*schema.Column{MenuColumns[0]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "menu_menu_children", Columns: []*schema.Column{MenuColumns[11]}, RefColumns: []*schema.Column{MenuColumns[0]}, OnDelete: schema.SetNull, }, { Symbol: "menu_role_menu", Columns: []*schema.Column{MenuColumns[12]}, RefColumns: []*schema.Column{RoleColumns[0]}, OnDelete: schema.SetNull, }, }, } // RoleColumns holds the columns for the "role" table. RoleColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt64, Increment: true}, {Name: "created_at", Type: field.TypeTime}, {Name: "updated_at", Type: field.TypeTime}, {Name: "deleted_at", Type: field.TypeTime, Nullable: true}, {Name: "key", Type: field.TypeString, Unique: true}, {Name: "name", Type: field.TypeString}, {Name: "comment", Type: field.TypeString, Nullable: true}, } // RoleTable holds the schema information for the "role" table. RoleTable = &schema.Table{ Name: "role", Columns: RoleColumns, PrimaryKey: []*schema.Column{RoleColumns[0]}, } // UserColumns holds the columns for the "user" table. UserColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "created_at", Type: field.TypeTime}, {Name: "updated_at", Type: field.TypeTime}, {Name: "deleted_at", Type: field.TypeTime, Nullable: true}, {Name: "username", Type: field.TypeString, Unique: true, Size: 20}, {Name: "password", Type: field.TypeString, Nullable: true, Size: 128}, {Name: "nick_name", Type: field.TypeString, Nullable: true}, {Name: "phone", Type: field.TypeString, Nullable: true}, {Name: "status", Type: field.TypeString, Default: "0"}, } // UserTable holds the schema information for the "user" table. UserTable = &schema.Table{ Name: "user", Columns: UserColumns, PrimaryKey: []*schema.Column{UserColumns[0]}, } // UserRoleColumns holds the columns for the "user_role" table. UserRoleColumns = []*schema.Column{ {Name: "user_id", Type: field.TypeInt}, {Name: "role_id", Type: field.TypeInt64}, } // UserRoleTable holds the schema information for the "user_role" table. UserRoleTable = &schema.Table{ Name: "user_role", Columns: UserRoleColumns, PrimaryKey: []*schema.Column{UserRoleColumns[0], UserRoleColumns[1]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "user_role_user_id", Columns: []*schema.Column{UserRoleColumns[0]}, RefColumns: []*schema.Column{UserColumns[0]}, OnDelete: schema.Cascade, }, { Symbol: "user_role_role_id", Columns: []*schema.Column{UserRoleColumns[1]}, RefColumns: []*schema.Column{RoleColumns[0]}, OnDelete: schema.Cascade, }, }, } // Tables holds all the tables in the schema. Tables = []*schema.Table{ MenuTable, RoleTable, UserTable, UserRoleTable, } )
Functions ¶
This section is empty.
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.