在用gorm创建表时,如果列对应的属性首字母为小写时(如下面User表的password属性),gorm不会将这一属性作为表的一列创建出来。
type User struct {
gorm.Model
Username string `gorm:"unique; not null"`
password string `gorm:"not null;"`
}
只有当结构体的某一属性首字母为大写时,gorm才会将之作为表的一列创建出来,故如果想让创建的表具有password这一列的话,应该按照如下创建结构体
type User struct {
gorm.Model
Username string `gorm:"unique; not null"`
Password string `gorm:"not null;"`
}
原文:https://www.cnblogs.com/fuck-you/p/13759276.html