change default value of safe from false to true for gdb.Model

This commit is contained in:
John 2020-04-03 10:16:57 +08:00
parent 4d33b527b6
commit f82f7ab199

View File

@ -69,7 +69,7 @@ func (c *Core) Table(table string) *Model {
fields: "*",
start: -1,
offset: -1,
safe: false,
safe: true,
option: OPTION_ALLOWEMPTY,
}
}
@ -99,7 +99,7 @@ func (tx *TX) Table(table string) *Model {
fields: "*",
start: -1,
offset: -1,
safe: false,
safe: true,
option: OPTION_ALLOWEMPTY,
}
}