Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jackra1n committed Mar 21, 2024
1 parent 8c6febc commit c962d73
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions resources/CreateDatabase.sql
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,11 @@ CREATE TABLE IF NOT EXISTS feedback (
content TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
accepted BOOLEAN
);

CREATE TABLE IF NOT EXISTS free_games_channel (
id SERIAL PRIMARY KEY,
discord_server_id BIGINT REFERENCES discord_server(discord_server_id),
discord_channel_id BIGINT REFERENCES discord_channel(discord_channel_id),
UNIQUE (discord_server_id, discord_channel_id)
);

0 comments on commit c962d73

Please sign in to comment.