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 ( // SysTasksColumns holds the columns for the "sys_tasks" table. SysTasksColumns = []*schema.Column{ {Name: "id", Type: field.TypeUint64, Increment: true}, {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"}, {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"}, {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1}, {Name: "name", Type: field.TypeString}, {Name: "task_group", Type: field.TypeString}, {Name: "cron_expression", Type: field.TypeString}, {Name: "pattern", Type: field.TypeString}, {Name: "payload", Type: field.TypeString}, } // SysTasksTable holds the schema information for the "sys_tasks" table. SysTasksTable = &schema.Table{ Name: "sys_tasks", Columns: SysTasksColumns, PrimaryKey: []*schema.Column{SysTasksColumns[0]}, Indexes: []*schema.Index{ { Name: "task_pattern", Unique: true, Columns: []*schema.Column{SysTasksColumns[7]}, }, }, } // SysTaskLogsColumns holds the columns for the "sys_task_logs" table. SysTaskLogsColumns = []*schema.Column{ {Name: "id", Type: field.TypeUint64, Increment: true}, {Name: "started_at", Type: field.TypeTime, Comment: "Task Started Time | 任务启动时间"}, {Name: "finished_at", Type: field.TypeTime, Comment: "Task Finished Time | 任务完成时间"}, {Name: "result", Type: field.TypeUint8, Comment: "The Task Process Result | 任务执行结果"}, {Name: "task_task_logs", Type: field.TypeUint64, Nullable: true}, } // SysTaskLogsTable holds the schema information for the "sys_task_logs" table. SysTaskLogsTable = &schema.Table{ Name: "sys_task_logs", Columns: SysTaskLogsColumns, PrimaryKey: []*schema.Column{SysTaskLogsColumns[0]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "sys_task_logs_sys_tasks_task_logs", Columns: []*schema.Column{SysTaskLogsColumns[4]}, RefColumns: []*schema.Column{SysTasksColumns[0]}, OnDelete: schema.SetNull, }, }, } // Tables holds all the tables in the schema. Tables = []*schema.Table{ SysTasksTable, SysTaskLogsTable, } )
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.