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 ( // BannersColumns holds the columns for the "banners" table. BannersColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "content", Type: field.TypeJSON}, {Name: "created_at", Type: field.TypeTime}, {Name: "updated_at", Type: field.TypeTime}, {Name: "is_active", Type: field.TypeBool, Default: true}, } // BannersTable holds the schema information for the "banners" table. BannersTable = &schema.Table{ Name: "banners", Columns: BannersColumns, PrimaryKey: []*schema.Column{BannersColumns[0]}, } // FeaturesColumns holds the columns for the "features" table. FeaturesColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "feature_name", Type: field.TypeString, Unique: true, Size: 2147483647}, {Name: "created_at", Type: field.TypeTime}, {Name: "updated_at", Type: field.TypeTime}, } // FeaturesTable holds the schema information for the "features" table. FeaturesTable = &schema.Table{ Name: "features", Columns: FeaturesColumns, PrimaryKey: []*schema.Column{FeaturesColumns[0]}, } // TagsColumns holds the columns for the "tags" table. TagsColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt, Increment: true}, {Name: "tag_name", Type: field.TypeString, Size: 2147483647}, {Name: "created_at", Type: field.TypeTime}, {Name: "updated_at", Type: field.TypeTime}, } // TagsTable holds the schema information for the "tags" table. TagsTable = &schema.Table{ Name: "tags", Columns: TagsColumns, PrimaryKey: []*schema.Column{TagsColumns[0]}, } // BannerTagsColumns holds the columns for the "banner_tags" table. BannerTagsColumns = []*schema.Column{ {Name: "banner_id", Type: field.TypeInt}, {Name: "tag_id", Type: field.TypeInt}, } // BannerTagsTable holds the schema information for the "banner_tags" table. BannerTagsTable = &schema.Table{ Name: "banner_tags", Columns: BannerTagsColumns, PrimaryKey: []*schema.Column{BannerTagsColumns[0], BannerTagsColumns[1]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "banner_tags_banner_id", Columns: []*schema.Column{BannerTagsColumns[0]}, RefColumns: []*schema.Column{BannersColumns[0]}, OnDelete: schema.Cascade, }, { Symbol: "banner_tags_tag_id", Columns: []*schema.Column{BannerTagsColumns[1]}, RefColumns: []*schema.Column{TagsColumns[0]}, OnDelete: schema.Cascade, }, }, } // FeatureBannersColumns holds the columns for the "feature_banners" table. FeatureBannersColumns = []*schema.Column{ {Name: "feature_id", Type: field.TypeInt}, {Name: "banner_id", Type: field.TypeInt}, } // FeatureBannersTable holds the schema information for the "feature_banners" table. FeatureBannersTable = &schema.Table{ Name: "feature_banners", Columns: FeatureBannersColumns, PrimaryKey: []*schema.Column{FeatureBannersColumns[0], FeatureBannersColumns[1]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "feature_banners_feature_id", Columns: []*schema.Column{FeatureBannersColumns[0]}, RefColumns: []*schema.Column{FeaturesColumns[0]}, OnDelete: schema.Cascade, }, { Symbol: "feature_banners_banner_id", Columns: []*schema.Column{FeatureBannersColumns[1]}, RefColumns: []*schema.Column{BannersColumns[0]}, OnDelete: schema.Cascade, }, }, } // Tables holds all the tables in the schema. Tables = []*schema.Table{ BannersTable, FeaturesTable, TagsTable, BannerTagsTable, FeatureBannersTable, } )
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.