Error 1292: Incorrect datetime value: '0000-00-00' for column 'created_at' at row 1
<a href="/user/18393910396" title="@18393910396">@18393910396</a> 结构字段和tag都没错,直接是在结构体里引用了`gorm.Model`,如果我其他的字段个tag有误应该会报错的,刚刚试了下在`db.Create`前打印了结构体的CreatedAt字段,显示的是`0001-01-01 00:00:00 +0000 UTC`,不是说`gorm`会自动插入当前的时间吗。。。
#6
更多评论
```go
type User struct {
gorm.Model
Username string `gorm:"type:varchar(20);unique_index"`
Password string `gorm:"type:varchar(64)"`
Phone string `gorm:"type:char(11);unique_index"`
}
```
#2