Add the migration for scoping grid data

remotes/origin/0.6.7-post-fixes
Melanie 2009-09-16 17:56:24 +01:00
parent 90a4d4f9f9
commit a251864e64
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
BEGIN;
ALTER TABLE regions add column ScopeID char(36) not null default '00000000-0000-0000-0000-000000000000';
create index ScopeID on regions(ScopeID);
COMMIT;