Mineplex/Mineplex.Database/039-polls.sql
Daniel Waggner fc179e824b Database go brrrrrrr
No idea why, but the database deleted all of the information...  These files are also logged in the Discord Changelog channel and are uploaded to mediafire... Nevertheless, here they are anyhow (plus a bunch of empty tables that I'm too lazy to take out of this commit)
2021-05-28 22:22:21 -07:00

16 lines
303 B
SQL

create or replace table polls
(
id int not null
primary key,
enabled bit null,
question varchar(256) not null,
answerA varchar(256) not null,
answerB varchar(256) null,
answerC varchar(256) null,
answerD varchar(256) null,
coinReward int not null,
displayType int not null
)
charset=latin1;