blob: 3d082c2f84812d883622ae4fd39e70397b654fbe (
plain)
1
2
3
4
5
|
alter table question add column `vote_up_count` int(11) NOT NULL;
alter table question add column `vote_down_count` int(11) NOT NULL;
alter table answer add column `vote_up_count` int(11) NOT NULL;
alter table answer add column `vote_down_count` int(11) NOT NULL;
|