added addtl column active flag

master
j 2024-04-02 22:56:34 -04:00
parent 46abc5ba68
commit 22f1b560f6
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
CREATE TABLE IF NOT EXISTS gameState (
authorId INTEGER PRIMARY KEY,
data TEXT NOT NULL
data TEXT NOT NULL,
active BOOLEAN NOT NULL DEFAULT TRUE
);