Add the Migration for the regions table

This commit is contained in:
Melanie
2009-09-27 21:17:23 +01:00
parent eb892e0545
commit 8e091f5903
3 changed files with 22 additions and 8 deletions

View File

@@ -0,0 +1,6 @@
BEGIN;
ALTER TABLE regions add column sizeX integer not null default 0;
ALTER TABLE regions add column sizeY integer not null default 0;
COMMIT;