mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 17:21:02 +00:00
test case bool default value is true
This commit is contained in:
parent
7dbeb2c39a
commit
a069c73b3a
@ -230,7 +230,7 @@ type User struct {
|
||||
Password string `orm:"size(100)"`
|
||||
Status int16 `orm:"column(Status)"`
|
||||
IsStaff bool
|
||||
IsActive bool `orm:"default(1)"`
|
||||
IsActive bool `orm:"default(true)"`
|
||||
Created time.Time `orm:"auto_now_add;type(date)"`
|
||||
Updated time.Time `orm:"auto_now"`
|
||||
Profile *Profile `orm:"null;rel(one);on_delete(set_null)"`
|
||||
|
Loading…
Reference in New Issue
Block a user