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

@@ -21,9 +21,11 @@ func (c Column) IsNullableForeignKey() bool {
// Table is a single SQLite table.
type Table struct {
TableName string `db:"name"`
IsStrict bool `db:"strict"`
Columns []Column
TableName string `db:"name"`
IsStrict bool `db:"is_strict"`
IsWithoutRowid bool `db:"is_without_rowid"`
Columns []Column
TypeIDName string
VarName string