Skip to content

Commit 5954889

Browse files
authored
fix: add options table to schema.sql (#489)
1 parent bf2b8de commit 5954889

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/schema.sql

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,12 @@ CREATE TABLE leaderboard (
193193
INDEX last_vote (last_vote)
194194
);
195195

196+
CREATE TABLE options (
197+
name VARCHAR(100) NOT NULL,
198+
value VARCHAR(100) NOT NULL,
199+
PRIMARY KEY (name)
200+
);
201+
196202
CREATE TABLE messages (
197203
mci INT NOT NULL AUTO_INCREMENT,
198204
id VARCHAR(66) NOT NULL,

0 commit comments

Comments
 (0)