From 22f1b560f67f2db0bf84976c13c4541f2a41da9a Mon Sep 17 00:00:00 2001 From: j Date: Tue, 2 Apr 2024 22:56:34 -0400 Subject: [PATCH] added addtl column active flag --- src/db/migrations/001_create_game_state_table.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/db/migrations/001_create_game_state_table.sql b/src/db/migrations/001_create_game_state_table.sql index d788d60..989bc2b 100644 --- a/src/db/migrations/001_create_game_state_table.sql +++ b/src/db/migrations/001_create_game_state_table.sql @@ -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 ); \ No newline at end of file