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 ( // SitesColumns holds the columns for the "sites" table. SitesColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "domain", Type: field.TypeString, Unique: true}, {Name: "favicon", Type: field.TypeString, Nullable: true}, } // SitesTable holds the schema information for the "sites" table. SitesTable = &schema.Table{ Name: "sites", Columns: SitesColumns, PrimaryKey: []*schema.Column{SitesColumns[0]}, } // UsersColumns holds the columns for the "users" table. UsersColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "email", Type: field.TypeString, Unique: true}, {Name: "password", Type: field.TypeBytes}, } // UsersTable holds the schema information for the "users" table. UsersTable = &schema.Table{ Name: "users", Columns: UsersColumns, PrimaryKey: []*schema.Column{UsersColumns[0]}, } // VisitsColumns holds the columns for the "visits" table. VisitsColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "path", Type: field.TypeString}, {Name: "referrer", Type: field.TypeString}, {Name: "timestamp", Type: field.TypeTime}, {Name: "ip", Type: field.TypeString}, {Name: "site_visits", Type: field.TypeInt}, } // VisitsTable holds the schema information for the "visits" table. VisitsTable = &schema.Table{ Name: "visits", Columns: VisitsColumns, PrimaryKey: []*schema.Column{VisitsColumns[0]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "visits_sites_visits", Columns: []*schema.Column{VisitsColumns[5]}, RefColumns: []*schema.Column{SitesColumns[0]}, OnDelete: schema.NoAction, }, }, } // UserSitesColumns holds the columns for the "user_sites" table. UserSitesColumns = []*schema.Column{ {Name: "user_id", Type: field.TypeInt}, {Name: "site_id", Type: field.TypeInt}, } // UserSitesTable holds the schema information for the "user_sites" table. UserSitesTable = &schema.Table{ Name: "user_sites", Columns: UserSitesColumns, PrimaryKey: []*schema.Column{UserSitesColumns[0], UserSitesColumns[1]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "user_sites_user_id", Columns: []*schema.Column{UserSitesColumns[0]}, RefColumns: []*schema.Column{UsersColumns[0]}, OnDelete: schema.Cascade, }, { Symbol: "user_sites_site_id", Columns: []*schema.Column{UserSitesColumns[1]}, RefColumns: []*schema.Column{SitesColumns[0]}, OnDelete: schema.Cascade, }, }, } // Tables holds all the tables in the schema. Tables = []*schema.Table{ SitesTable, UsersTable, VisitsTable, UserSitesTable, } )
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.