1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- // Code generated by entc, DO NOT EDIT.
- package migrate
- import (
- "github.com/facebookincubator/ent/dialect/sql/schema"
- "github.com/facebookincubator/ent/schema/field"
- )
- var (
- // CarsColumns holds the columns for the "cars" table.
- CarsColumns = []*schema.Column{
- {Name: "id", Type: field.TypeInt, Increment: true},
- {Name: "model", Type: field.TypeString},
- {Name: "registered_at", Type: field.TypeTime},
- {Name: "user_cars", Type: field.TypeInt, Nullable: true},
- }
- // CarsTable holds the schema information for the "cars" table.
- CarsTable = &schema.Table{
- Name: "cars",
- Columns: CarsColumns,
- PrimaryKey: []*schema.Column{CarsColumns[0]},
- ForeignKeys: []*schema.ForeignKey{
- {
- Symbol: "cars_users_cars",
- Columns: []*schema.Column{CarsColumns[3]},
- 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]},
- ForeignKeys: []*schema.ForeignKey{},
- }
- // UsersColumns holds the columns for the "users" table.
- UsersColumns = []*schema.Column{
- {Name: "id", Type: field.TypeInt, Increment: true},
- {Name: "age", Type: field.TypeInt},
- {Name: "name", Type: field.TypeString, Default: "unknown"},
- }
- // UsersTable holds the schema information for the "users" table.
- UsersTable = &schema.Table{
- Name: "users",
- Columns: UsersColumns,
- PrimaryKey: []*schema.Column{UsersColumns[0]},
- ForeignKeys: []*schema.ForeignKey{},
- }
- // GroupUsersColumns holds the columns for the "group_users" table.
- GroupUsersColumns = []*schema.Column{
- {Name: "group_id", Type: field.TypeInt},
- {Name: "user_id", Type: field.TypeInt},
- }
- // GroupUsersTable holds the schema information for the "group_users" table.
- GroupUsersTable = &schema.Table{
- Name: "group_users",
- Columns: GroupUsersColumns,
- PrimaryKey: []*schema.Column{GroupUsersColumns[0], GroupUsersColumns[1]},
- ForeignKeys: []*schema.ForeignKey{
- {
- Symbol: "group_users_group_id",
- Columns: []*schema.Column{GroupUsersColumns[0]},
- RefColumns: []*schema.Column{GroupsColumns[0]},
- OnDelete: schema.Cascade,
- },
- {
- Symbol: "group_users_user_id",
- Columns: []*schema.Column{GroupUsersColumns[1]},
- RefColumns: []*schema.Column{UsersColumns[0]},
- OnDelete: schema.Cascade,
- },
- },
- }
- // Tables holds all the tables in the schema.
- Tables = []*schema.Table{
- CarsTable,
- GroupsTable,
- UsersTable,
- GroupUsersTable,
- }
- )
- func init() {
- CarsTable.ForeignKeys[0].RefTable = UsersTable
- GroupUsersTable.ForeignKeys[0].RefTable = GroupsTable
- GroupUsersTable.ForeignKeys[1].RefTable = UsersTable
- }
|