Files
opensim/OpenSim/Data/MySQL/Resources/003_GridStore.sql
2009-09-16 17:56:24 +01:00

8 lines
165 B
PL/PgSQL

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