Fix inconsistencies between int and bool in db

This commit is contained in:
Jamie Curnow
2023-05-30 15:51:57 +10:00
parent 7edcb8e3cc
commit 98ff4a7dcc
7 changed files with 144 additions and 152 deletions

View File

@ -69,8 +69,8 @@ func checkSetup() {
if db != nil {
db.Model(&user.Model{}).
Where("is_disabled = ?", 0).
Where("is_system = ?", 0).
Where("is_disabled = ?", false).
Where("is_system = ?", false).
Count(&count)
if count == 0 {