diff --git a/src/db/migrations/001_create_game_state_table.sql b/src/db/migrations/001_create_game_state_table.sql new file mode 100644 index 0000000..d788d60 --- /dev/null +++ b/src/db/migrations/001_create_game_state_table.sql @@ -0,0 +1,4 @@ +CREATE TABLE IF NOT EXISTS gameState ( + authorId INTEGER PRIMARY KEY, + data TEXT NOT NULL +); \ No newline at end of file