Added missing field

This commit is contained in:
2025-11-03 23:15:53 -05:00
parent a60f76c30e
commit 388c39973c

View File

@@ -48,7 +48,8 @@ library_table_creation = '''
CREATE TABLE IF NOT EXISTS "library"(
"id" BIGINT NOT NULL,
"name" VARCHAR(255) NOT NULL,
"address" VARCHAR(255) NOT NULL
"address" VARCHAR(255) NOT NULL,
"is_archived" BOOLEAN NOT NULL
);
'''