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 ( // AttachmentsColumns holds the columns for the "attachments" table. AttachmentsColumns = []*schema.Column{ {Name: "id", Type: field.TypeUUID}, {Name: "user_attachment", Type: field.TypeInt, Unique: true, Nullable: true}, } // AttachmentsTable holds the schema information for the "attachments" table. AttachmentsTable = &schema.Table{ Name: "attachments", Columns: AttachmentsColumns, PrimaryKey: []*schema.Column{AttachmentsColumns[0]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "attachments_users_attachment", Columns: []*schema.Column{AttachmentsColumns[1]}, RefColumns: []*schema.Column{UsersColumns[0]}, OnDelete: schema.SetNull, }, }, } // GroupsColumns holds the columns for the "groups" table. GroupsColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "name", Type: field.TypeString}, } // GroupsTable holds the schema information for the "groups" table. GroupsTable = &schema.Table{ Name: "groups", Columns: GroupsColumns, PrimaryKey: []*schema.Column{GroupsColumns[0]}, } // MultiWordSchemasColumns holds the columns for the "multi_word_schemas" table. MultiWordSchemasColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "unit", Type: field.TypeEnum, Enums: []string{"m", "ft"}, Default: "m"}, } // MultiWordSchemasTable holds the schema information for the "multi_word_schemas" table. MultiWordSchemasTable = &schema.Table{ Name: "multi_word_schemas", Columns: MultiWordSchemasColumns, PrimaryKey: []*schema.Column{MultiWordSchemasColumns[0]}, } // NilExamplesColumns holds the columns for the "nil_examples" table. NilExamplesColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "str_nil", Type: field.TypeString, Nullable: true}, {Name: "time_nil", Type: field.TypeTime, Nullable: true}, } // NilExamplesTable holds the schema information for the "nil_examples" table. NilExamplesTable = &schema.Table{ Name: "nil_examples", Columns: NilExamplesColumns, PrimaryKey: []*schema.Column{NilExamplesColumns[0]}, } // PetsColumns holds the columns for the "pets" table. PetsColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "user_pet", 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: "pets_users_pet", Columns: []*schema.Column{PetsColumns[1]}, RefColumns: []*schema.Column{UsersColumns[0]}, OnDelete: schema.SetNull, }, }, } // SkipEdgeExamplesColumns holds the columns for the "skip_edge_examples" table. SkipEdgeExamplesColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "user_skip_edge", Type: field.TypeInt, Unique: true, Nullable: true}, } // SkipEdgeExamplesTable holds the schema information for the "skip_edge_examples" table. SkipEdgeExamplesTable = &schema.Table{ Name: "skip_edge_examples", Columns: SkipEdgeExamplesColumns, PrimaryKey: []*schema.Column{SkipEdgeExamplesColumns[0]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "skip_edge_examples_users_skip_edge", Columns: []*schema.Column{SkipEdgeExamplesColumns[1]}, RefColumns: []*schema.Column{UsersColumns[0]}, OnDelete: schema.SetNull, }, }, } // TodosColumns holds the columns for the "todos" table. TodosColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "task", Type: field.TypeString}, {Name: "status", Type: field.TypeEnum, Enums: []string{"pending", "in_progress", "done"}, Default: "pending"}, {Name: "todo_user", Type: field.TypeInt, Nullable: true}, } // TodosTable holds the schema information for the "todos" table. TodosTable = &schema.Table{ Name: "todos", Columns: TodosColumns, PrimaryKey: []*schema.Column{TodosColumns[0]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "todos_users_user", Columns: []*schema.Column{TodosColumns[3]}, RefColumns: []*schema.Column{UsersColumns[0]}, OnDelete: schema.SetNull, }, }, } // UsersColumns holds the columns for the "users" table. UsersColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "user_name", Type: field.TypeString, Unique: true}, {Name: "joined", Type: field.TypeTime}, {Name: "points", Type: field.TypeUint}, {Name: "exp", Type: field.TypeUint64}, {Name: "status", Type: field.TypeEnum, Enums: []string{"pending", "active"}}, {Name: "external_id", Type: field.TypeInt, Unique: true}, {Name: "crm_id", Type: field.TypeUUID}, {Name: "banned", Type: field.TypeBool, Default: false}, {Name: "custom_pb", Type: field.TypeUint8}, {Name: "opt_num", Type: field.TypeInt, Nullable: true}, {Name: "opt_str", Type: field.TypeString, Nullable: true}, {Name: "opt_bool", Type: field.TypeBool, Nullable: true}, {Name: "big_int", Type: field.TypeInt, Nullable: true}, {Name: "b_user_1", Type: field.TypeInt, Unique: true, Nullable: true}, {Name: "height_in_cm", Type: field.TypeFloat32, Default: 0}, {Name: "account_balance", Type: field.TypeFloat64, Default: 0}, {Name: "unnecessary", Type: field.TypeString, Nullable: true}, {Name: "type", Type: field.TypeString, Nullable: true}, {Name: "user_group", Type: field.TypeInt, Nullable: true}, } // 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_groups_group", Columns: []*schema.Column{UsersColumns[19]}, RefColumns: []*schema.Column{GroupsColumns[0]}, OnDelete: schema.SetNull, }, }, } // AttachmentRecipientsColumns holds the columns for the "attachment_recipients" table. AttachmentRecipientsColumns = []*schema.Column{ {Name: "attachment_id", Type: field.TypeUUID}, {Name: "user_id", Type: field.TypeInt}, } // AttachmentRecipientsTable holds the schema information for the "attachment_recipients" table. AttachmentRecipientsTable = &schema.Table{ Name: "attachment_recipients", Columns: AttachmentRecipientsColumns, PrimaryKey: []*schema.Column{AttachmentRecipientsColumns[0], AttachmentRecipientsColumns[1]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "attachment_recipients_attachment_id", Columns: []*schema.Column{AttachmentRecipientsColumns[0]}, RefColumns: []*schema.Column{AttachmentsColumns[0]}, OnDelete: schema.Cascade, }, { Symbol: "attachment_recipients_user_id", Columns: []*schema.Column{AttachmentRecipientsColumns[1]}, RefColumns: []*schema.Column{UsersColumns[0]}, OnDelete: schema.Cascade, }, }, } // Tables holds all the tables in the schema. Tables = []*schema.Table{ AttachmentsTable, GroupsTable, MultiWordSchemasTable, NilExamplesTable, PetsTable, SkipEdgeExamplesTable, TodosTable, UsersTable, AttachmentRecipientsTable, } )
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.