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

This commit is contained in:
Gregoo
2025-01-30 15:03:16 +01:00
parent 050b1993da
commit 7d16e491c8
46 changed files with 304 additions and 281 deletions

View File

@@ -0,0 +1,16 @@
BEGIN TRANSACTION;
ALTER TABLE "bricktracker_set_statuses"
ADD COLUMN "status_{{ id }}" BOOLEAN NOT NULL DEFAULT 0;
INSERT INTO "bricktracker_metadata_statuses" (
"id",
"name",
"displayed_on_grid"
) VALUES (
'{{ id }}',
'{{ name }}',
{{ displayed_on_grid }}
);
COMMIT;