Bot is now basically functional
Big tidy up, new question source.
This commit is contained in:
14
TriviaBot/bot/db/schema.sqlite
Normal file
14
TriviaBot/bot/db/schema.sqlite
Normal file
@ -0,0 +1,14 @@
|
||||
BEGIN TRANSACTION;
|
||||
CREATE TABLE "TotalScores" (
|
||||
`User` TEXT UNIQUE,
|
||||
`TotalScore` INTEGER,
|
||||
`AverageTime` INTEGER,
|
||||
PRIMARY KEY(User)
|
||||
);
|
||||
CREATE TABLE "Questions" (
|
||||
`ID` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
`Category` TEXT,
|
||||
`Question` TEXT,
|
||||
`Answer` TEXT
|
||||
);
|
||||
COMMIT;
|
Reference in New Issue
Block a user