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 ( // ArticlesColumns holds the columns for the "articles" table. ArticlesColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt64, Increment: true}, {Name: "title", Type: field.TypeString}, {Name: "content", Type: field.TypeString}, {Name: "created_at", Type: field.TypeTime, SchemaType: map[string]string{"mysql": "datetime"}}, {Name: "updated_at", Type: field.TypeTime, SchemaType: map[string]string{"mysql": "datetime"}}, } // ArticlesTable holds the schema information for the "articles" table. ArticlesTable = &schema.Table{ Name: "articles", Columns: ArticlesColumns, PrimaryKey: []*schema.Column{ArticlesColumns[0]}, ForeignKeys: []*schema.ForeignKey{}, } // CommentsColumns holds the columns for the "comments" table. CommentsColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt64, Increment: true}, {Name: "name", Type: field.TypeString}, {Name: "content", Type: field.TypeString}, {Name: "created_at", Type: field.TypeTime, SchemaType: map[string]string{"mysql": "datetime"}}, {Name: "updated_at", Type: field.TypeTime, SchemaType: map[string]string{"mysql": "datetime"}}, {Name: "article_comments", Type: field.TypeInt64, Nullable: true}, } // CommentsTable holds the schema information for the "comments" table. CommentsTable = &schema.Table{ Name: "comments", Columns: CommentsColumns, PrimaryKey: []*schema.Column{CommentsColumns[0]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "comments_articles_comments", Columns: []*schema.Column{CommentsColumns[5]}, RefColumns: []*schema.Column{ArticlesColumns[0]}, OnDelete: schema.SetNull, }, }, } // TagsColumns holds the columns for the "tags" table. TagsColumns = []*schema.Column{ {Name: "id", Type: field.TypeInt64, Increment: true}, {Name: "slug", Type: field.TypeString}, {Name: "name", Type: field.TypeString}, {Name: "created_at", Type: field.TypeTime, SchemaType: map[string]string{"mysql": "datetime"}}, {Name: "updated_at", Type: field.TypeTime, SchemaType: map[string]string{"mysql": "datetime"}}, } // TagsTable holds the schema information for the "tags" table. TagsTable = &schema.Table{ Name: "tags", Columns: TagsColumns, PrimaryKey: []*schema.Column{TagsColumns[0]}, ForeignKeys: []*schema.ForeignKey{}, } // TagPostsColumns holds the columns for the "tag_posts" table. TagPostsColumns = []*schema.Column{ {Name: "tag_id", Type: field.TypeInt64}, {Name: "article_id", Type: field.TypeInt64}, } // TagPostsTable holds the schema information for the "tag_posts" table. TagPostsTable = &schema.Table{ Name: "tag_posts", Columns: TagPostsColumns, PrimaryKey: []*schema.Column{TagPostsColumns[0], TagPostsColumns[1]}, ForeignKeys: []*schema.ForeignKey{ { Symbol: "tag_posts_tag_id", Columns: []*schema.Column{TagPostsColumns[0]}, RefColumns: []*schema.Column{TagsColumns[0]}, OnDelete: schema.Cascade, }, { Symbol: "tag_posts_article_id", Columns: []*schema.Column{TagPostsColumns[1]}, RefColumns: []*schema.Column{ArticlesColumns[0]}, OnDelete: schema.Cascade, }, }, } // Tables holds all the tables in the schema. Tables = []*schema.Table{ ArticlesTable, CommentsTable, TagsTable, TagPostsTable, } )
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.