Compare commits

...

2 Commits

Author SHA1 Message Date
da2ec21571 fix issue 2020-10-27 10:41:18 +08:00
ebb8d8a2f7 fix issue in 2020-10-27 10:40:47 +08:00
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ import (
var (
createdFiledNames = []string{"created_at", "create_at"} // Default filed names of table for automatic-filled created datetime.
updatedFiledNames = []string{"updated_at", "update_at"} // Default filed names of table for automatic-filled updated datetime.
deletedFiledNames = []string{"updated_at", "delete_at"} // Default filed names of table for automatic-filled deleted datetime.
deletedFiledNames = []string{"deleted_at", "delete_at"} // Default filed names of table for automatic-filled deleted datetime.
)
// Unscoped disables the auto-update time feature for insert, update and delete options.

View File

@ -1,4 +1,4 @@
package gf
const VERSION = "v1.14.1"
const VERSION = "v1.14.2"
const AUTHORS = "john<john@goframe.org>"