Skip to content

Commit

Permalink
fix: add options table to schema.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e committed Jan 9, 2025
1 parent 0776492 commit c1a76c4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,12 @@ CREATE TABLE leaderboard (
INDEX last_vote (last_vote)
);

CREATE TABLE options (
name VARCHAR(100) NOT NULL,
value VARCHAR(100) NOT NULL,
PRIMARY KEY (name)
);

CREATE TABLE messages (
mci INT NOT NULL AUTO_INCREMENT,
id VARCHAR(66) NOT NULL,
Expand Down

0 comments on commit c1a76c4

Please sign in to comment.