Do not set CreatedAt if blank during Save (#2207)

This commit is contained in:
Edgar Fournival 2019-01-02 14:28:02 +01:00 committed by Jinzhu
parent e2cfd6be3b
commit a6382da485
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ func updateCallback(scope *Scope) {
} else {
for _, field := range scope.Fields() {
if scope.changeableField(field) {
if !field.IsPrimaryKey && field.IsNormal {
if !field.IsPrimaryKey && field.IsNormal && (field.Name != "CreatedAt" || !field.IsBlank) {
if !field.IsForeignKey || !field.IsBlank || !field.HasDefaultValue {
sqls = append(sqls, fmt.Sprintf("%v = %v", scope.Quote(field.DBName), scope.AddToVars(field.Field.Interface())))
}