webgui/docs/upgrades/upgrade_1.2.0-1.2.1.sql
2001-12-31 23:34:00 +00:00

5 lines
197 B
SQL

alter table Poll add column graphWidth_temp int after active;
update Poll set graphWidth_temp=graphWidth;
alter table Poll drop graphWidth;
alter table Poll change graphWidth_temp graphWidth int;