CREATE TABLE "game" (
"category_id" text primary key,
"title" text not null,
"town_square_channel_id" text,
"nominations_channel_id" text,
"guild_id" text not null,
"storyteller_id" text not null,
"is_active" integer not null,
"is_teensy" integer not null,
"private_room_limit" integer not null,
"group_room_limit" integer not null,
"neighbor_whisper_limit" integer not null,
"day_length" real not null,
"night_length" real not null,
"auto_start" integer not null,
"allow_conditional_voting" integer not null,
"current_cycle_start_time" text,
"current_day" integer not null,
"current_night" integer not null,
"voting_window" real not null,
"groups_should_decrement_room_count" integer not null,
"private_voting" integer not null,
"allow_room_history_command" integer not null
)