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