1 alter table question add column `vote_up_count` int(11) NOT NULL;
2 alter table question add column `vote_down_count` int(11) NOT NULL;
4 alter table answer add column `vote_up_count` int(11) NOT NULL;
5 alter table answer add column `vote_down_count` int(11) NOT NULL;