Tidy up the Table SQL interface a bit
All checks were successful
CI / release-test (push) Successful in 2m33s

This commit is contained in:
2025-08-23 15:53:23 -07:00
parent 754c21ab29
commit 14d395f0ea
3 changed files with 14 additions and 8 deletions

View File

@@ -27,7 +27,7 @@ func SchemaFromDB(db *sqlx.DB) Schema {
ret := Schema{}
var tables []Table
err := db.Select(&tables, `select name, strict from tables`)
err := db.Select(&tables, `select name, is_strict, is_without_rowid from tables`)
if err != nil {
panic(err)
}