Error 1292: Incorrect datetime value: '0000-00-00' for column 'created_at' at row 1
应该是你得mysql版本是新版本的,mysql以前 datetime 的默认值可以设为 '0000-00-00 00:00:00', 新的mysql不能设为这个值,可以把默认值设置为正常的时间就可以了, 比如 '2019-01-01 00:00:00'
#8
更多评论
```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