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 )
View Source
var ( // DirectionsColumns holds the columns for the "directions" table. DirectionsColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "description", Type: field.TypeString}, {Name: "name", Type: field.TypeString}, {Name: "receipt_direction_id", Type: field.TypeInt, Nullable: true}, } // DirectionsTable holds the schema information for the "directions" table. DirectionsTable = &schema.Table{ Name: "directions", Columns: DirectionsColumns, PrimaryKey: []*schema.Column{DirectionsColumns[0]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "directions_receipts_directions", Columns: []*schema.Column{DirectionsColumns[3]}, RefColumns: []*schema.Column{ReceiptsColumns[0]}, OnDelete: schema.SetNull, }, }, } // IngredientsColumns holds the columns for the "ingredients" table. IngredientsColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "name", Type: field.TypeString}, {Name: "unit_type", Type: field.TypeString}, {Name: "receipt_ingredient_id", Type: field.TypeInt, Nullable: true}, } // IngredientsTable holds the schema information for the "ingredients" table. IngredientsTable = &schema.Table{ Name: "ingredients", Columns: IngredientsColumns, PrimaryKey: []*schema.Column{IngredientsColumns[0]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "ingredients_receipts_ingredients", Columns: []*schema.Column{IngredientsColumns[3]}, RefColumns: []*schema.Column{ReceiptsColumns[0]}, OnDelete: schema.SetNull, }, }, } // ReceiptsColumns holds the columns for the "receipts" table. ReceiptsColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "name", Type: field.TypeString}, {Name: "portions", Type: field.TypeInt}, } // ReceiptsTable holds the schema information for the "receipts" table. ReceiptsTable = &schema.Table{ Name: "receipts", Columns: ReceiptsColumns, PrimaryKey: []*schema.Column{ReceiptsColumns[0]}, ForeignKeys: []*schema.ForeignKey{}, } // UsersColumns holds the columns for the "users" table. UsersColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: 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{}, } // Tables holds all the tables in the schema. Tables = []*schema.Table{ DirectionsTable, IngredientsTable, ReceiptsTable, UsersTable, } )
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.