Mineplex/Mineplex.Database/039-polls.sql

16 lines
303 B
MySQL
Raw Normal View History

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;