aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/003_GridStore.sql
blob: bc3fe7df7adfe1ccbd56a30e8243b4d31f35eaba (plain)
1
2
3
4
5
6
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;