From a251864e64223e8f797e20d016952b422685e447 Mon Sep 17 00:00:00 2001 From: Melanie Date: Wed, 16 Sep 2009 17:56:24 +0100 Subject: Add the migration for scoping grid data --- OpenSim/Data/MySQL/Resources/003_GridStore.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 OpenSim/Data/MySQL/Resources/003_GridStore.sql (limited to 'OpenSim/Data/MySQL/Resources/003_GridStore.sql') diff --git a/OpenSim/Data/MySQL/Resources/003_GridStore.sql b/OpenSim/Data/MySQL/Resources/003_GridStore.sql new file mode 100644 index 0000000..bc3fe7d --- /dev/null +++ b/OpenSim/Data/MySQL/Resources/003_GridStore.sql @@ -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; -- cgit v1.1