1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-28 18:54:13 +00:00

orm:change the models_test default value

This commit is contained in:
astaxie 2014-07-01 00:30:05 +08:00
parent 36ba1e49b1
commit 8946f816f9

View File

@ -205,7 +205,7 @@ type User struct {
Password string `orm:"size(100)"` Password string `orm:"size(100)"`
Status int16 `orm:"column(Status)"` Status int16 `orm:"column(Status)"`
IsStaff bool IsStaff bool
IsActive bool `orm:"default(1)"` IsActive bool `orm:"default(TRUE)"`
Created time.Time `orm:"auto_now_add;type(date)"` Created time.Time `orm:"auto_now_add;type(date)"`
Updated time.Time `orm:"auto_now"` Updated time.Time `orm:"auto_now"`
Profile *Profile `orm:"null;rel(one);on_delete(set_null)"` Profile *Profile `orm:"null;rel(one);on_delete(set_null)"`