约束
少于1分钟
GORM allows create database constraints with tag, constraints will be created when AutoMigrate or CreateTable with GORM
GORM 允许使用标签创建数据库约束,当执行 AutoMigrate 或 CreateTable 与 GORM 时,将创建这些约束。
CHECK Constraint
Create CHECK constraints with tag check
使用 check
标签创建 CHECK 约束:
|
|
Index Constraint
Checkout Database Indexes
查看 数据库索引。
Foreign Key Constraint
GORM will creates foreign keys constraints for associations, you can disable this feature during initialization:
GORM 将为关联关系创建外键约束,您可以在初始化过程中禁用此功能:
|
|
GORM allows you setup FOREIGN KEY constraints’s OnDelete
, OnUpdate
option with tag constraint
, for example:
GORM 允许您使用 constraint
标签的 OnDelete
、OnUpdate
选项设置 FOREIGN KEY 约束,例如:
|
|