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;