mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
fix invalid UpdatedAt usage in soft deleting feature for package gdb (#2323)
This commit is contained in:
parent
fbeb8f81ac
commit
0a76b9c61b
1
.gitignore
vendored
1
.gitignore
vendored
@ -17,4 +17,5 @@ cbuild
|
||||
cmd/gf/main
|
||||
cmd/gf/gf
|
||||
go.work
|
||||
go.work.sum
|
||||
temp/
|
||||
|
@ -86,7 +86,7 @@ func (m *Model) getSoftFieldNameDeleted(table ...string) (field string) {
|
||||
tableName = m.tablesInit
|
||||
}
|
||||
config := m.db.GetConfig()
|
||||
if config.UpdatedAt != "" {
|
||||
if config.DeletedAt != "" {
|
||||
return m.getSoftFieldName(tableName, []string{config.DeletedAt})
|
||||
}
|
||||
return m.getSoftFieldName(tableName, deletedFiledNames)
|
||||
|
Loading…
x
Reference in New Issue
Block a user