Skip to content

Commit

Permalink
fix: add options table to schema.sql (#489)
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e authored Jan 14, 2025
1 parent bf2b8de commit 5954889
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 5954889

Please sign in to comment.