Rename checkboxes (too generic) to status (and some bug fixes)

This commit is contained in:
2025-01-30 15:03:16 +01:00
parent 050b1993da
commit 7d16e491c8
46 changed files with 304 additions and 281 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ if TYPE_CHECKING:
# Grab the list of checkboxes to create a list of SQL columns
def migration_0007(sql: 'BrickSQL', /) -> dict[str, Any]:
# Don't realy on sql files as they could be removed in the future
sql.cursor.execute('SELECT "bricktracker_set_checkboxes"."id" FROM "bricktracker_set_checkboxes') # noqa: E501
sql.cursor.execute('SELECT "bricktracker_set_checkboxes"."id" FROM "bricktracker_set_checkboxes"') # noqa: E501
records = sql.cursor.fetchall()
return {