1
0
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:
HaiLaz 2022-11-24 21:23:15 +08:00 committed by GitHub
parent fbeb8f81ac
commit 0a76b9c61b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -17,4 +17,5 @@ cbuild
cmd/gf/main
cmd/gf/gf
go.work
go.work.sum
temp/

View File

@ -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)