模型定义

复杂的模型定义不是必须的,此功能用作数据库数据转换和自动建表

默认的表名规则,使用驼峰转蛇形:

  1. AuthUser -> auth_user
  2. Auth_User -> auth__user
  3. DB_AuthUser -> d_b__auth_user
_

自定义表名

TableNameI
  1. type User struct {
  2. Id int
  3. Name string
  4. }
  5. func (u *User) TableName() string {
  6. return "auth_user"
  7. }
prefix_

自定义索引

TableIndexI
  1. type User struct {
  2. Id int
  3. Name string
  4. Email string
  5. }
  6. // 多字段索引
  7. func (u *User) TableIndex() [][]string {
  8. return [][]string{
  9. []string{"Id", "Name"},
  10. }
  11. }
  12. // 多字段唯一键
  13. func (u *User) TableUnique() [][]string {
  14. return [][]string{
  15. []string{"Name", "Email"},
  16. }
  17. }

自定义引擎

TableEngineI

默认使用的引擎,为当前数据库的默认引擎,这个是由你的 mysql 配置参数决定的。

你可以在模型里设置 TableEngine 函数,指定使用的引擎

  1. type User struct {
  2. Id int
  3. Name string
  4. Email string
  5. }
  6. // 设置引擎为 INNODB
  7. func (u *User) TableEngine() string {
  8. return "INNODB"
  9. }

设置参数

  1. orm:"null;rel(fk)"
;,

忽略字段

-
  1. type User struct {
  2. ...
  3. AnyField string `orm:"-"`
  4. ...
  5. }

auto

当 Field 类型为 int, int32, int64, uint, uint32, uint64 时,可以设置字段为自增健

Id

鉴于 go 目前的设计,即使使用了 uint64,但你也不能存储到他的最大值。依然会作为 int64 处理。

参见 issue 6113

pk

设置为主键,适用于自定义其他类型为主键

null

NOT NULLALLOW NULL
  1. Name string `orm:"null"`

index

为单个字段增加索引

  1. Name string `orm:"index"`

unique

为单个字段增加 unique 键

  1. Name string `orm:"unique"`

column

为字段设置 db 字段的名称

  1. Name string `orm:"column(user_name)"`

size

string 类型字段默认为 varchar(255)

设置 size 以后,db type 将使用 varchar(size)

  1. Title string `orm:"size(60)"`

digits / decimals

设置 float32, float64 类型的浮点精度

  1. Money float64 `orm:"digits(12);decimals(4)"`
99999999.9999

auto_now / auto_now_add

  1. Created time.Time `orm:"auto_now_add;type(datetime)"`
  2. Updated time.Time `orm:"auto_now;type(datetime)"`
  • auto_now 每次 model 保存时都会对时间自动更新
  • auto_now_add 第一次保存时才设置时间

对于批量的 update 此设置是不生效的

type

设置为 date 时,time.Time 字段的对应 db 类型使用 date

  1. Created time.Time `orm:"auto_now_add;type(date)"`

设置为 datetime 时,time.Time 字段的对应 db 类型使用 datetime

  1. Created time.Time `orm:"auto_now_add;type(datetime)"`

default

在 v2.x 里面,我们提供了默认值的Filter:

  1. import (
  2. "github.com/beego/beego/v2/client/orm/filter/bean"
  3. "github.com/beego/beego/v2/client/orm"
  4. )
  5. type DefaultValueTestEntity struct {
  6. Id int
  7. Age int `default:"12"`
  8. AgeInOldStyle int `orm:"default(13);bee()"`
  9. AgeIgnore int
  10. }
  11. func XXX() {
  12. builder := bean.NewDefaultValueFilterChainBuilder(nil, true, true)
  13. orm.AddGlobalFilterChain(builder.FilterChain)
  14. o := orm.NewOrm()
  15. _, _ = o.Insert(&User{
  16. ID: 1,
  17. Name: "Tom",
  18. })
  19. }
filter

Comment

为字段添加注释

  1. type User struct {
  2. ...
  3. Status int `orm:"default(1);description(这是状态字段)"`
  4. ...
  5. }

注意: 注释中禁止包含引号

Precision

datetime
orm:"type(datetime);precision(4)"

表关系设置

rel / reverse

RelOneToOne:

  1. type User struct {
  2. ...
  3. Profile *Profile `orm:"null;rel(one);on_delete(set_null)"`
  4. ...
  5. }

对应的反向关系 RelReverseOne:

  1. type Profile struct {
  2. ...
  3. User *User `orm:"reverse(one)"`
  4. ...
  5. }

RelForeignKey:

  1. type Post struct {
  2. ...
  3. User *User `orm:"rel(fk)"` // RelForeignKey relation
  4. ...
  5. }

对应的反向关系 RelReverseMany:

  1. type User struct {
  2. ...
  3. Posts []*Post `orm:"reverse(many)"` // fk 的反向关系
  4. ...
  5. }

RelManyToMany:

  1. type Post struct {
  2. ...
  3. Tags []*Tag `orm:"rel(m2m)"` // ManyToMany relation
  4. ...
  5. }

对应的反向关系 RelReverseMany:

  1. type Tag struct {
  2. ...
  3. Posts []*Post `orm:"reverse(many)"`
  4. ...
  5. }

rel_table / rel_through

orm:"rel(m2m)"
  1. rel_table 设置自动生成的 m2m 关系表的名称
  2. rel_through 如果要在 m2m 关系中使用自定义的 m2m 关系表
  3. 通过这个设置其名称,格式为 pkg.path.ModelName
  4. eg: app.models.PostTagRel
  5. PostTagRel 表需要有到 Post 和 Tag 的关系

当设置 rel_table 时会忽略 rel_through

设置方法:

orm:"rel(m2m);rel_table(the_table_name)"
orm:"rel(m2m);rel_through(pkg.path.ModelName)"

on_delete

设置对应的 rel 关系删除时,如何处理关系字段。

  1. cascade 级联删除(默认值)
  2. set_null 设置为 NULL,需要设置 null = true
  3. set_default 设置为默认值,需要设置 default 值
  4. do_nothing 什么也不做,忽略
  1. type User struct {
  2. ...
  3. Profile *Profile `orm:"null;rel(one);on_delete(set_null)"`
  4. ...
  5. }
  6. type Profile struct {
  7. ...
  8. User *User `orm:"reverse(one)"`
  9. ...
  10. }
  11. // 删除 Profile 时将设置 User.Profile 的数据库字段为 NULL

关于 on_delete 的相关例子

  1. type User struct {
  2. Id int
  3. Name string
  4. }
  5. type Post struct {
  6. Id int
  7. Title string
  8. User *User `orm:"rel(fk)"`
  9. }

假设 Post -> User 是 ManyToOne 的关系,也就是外键。

  1. o.Filter("Id", 1).Delete()

这个时候即会删除 Id 为 1 的 User 也会删除其发布的 Post

不想删除的话,需要设置 set_null

  1. type Post struct {
  2. Id int
  3. Title string
  4. User *User `orm:"rel(fk);null;on_delete(set_null)"`
  5. }

那这个时候,删除 User 只会把对应的 Post.user_id 设置为 NULL

当然有时候为了高性能的需要,多存点数据无所谓啊,造成批量删除才是问题。

  1. type Post struct {
  2. Id int
  3. Title string
  4. User *User `orm:"rel(fk);null;on_delete(do_nothing)"`
  5. }

那么只要删除的时候,不操作 Post 就可以了。

模型字段与数据库类型的对应

在此列出 ORM 推荐的对应数据库类型,自动建表功能也会以此为标准。

默认所有的字段都是 NOT NULL

MySQL

IdIdIdId

Sqlite3

Id

PostgreSQL

Id

关系型字段

其字段类型取决于对应的主键。

  • RelForeignKey
  • RelOneToOne
  • RelManyToMany
  • RelReverseOne
  • RelReverseMany