aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorMelanie2009-09-16 17:56:24 +0100
committerMelanie2009-09-16 17:56:24 +0100
commita251864e64223e8f797e20d016952b422685e447 (patch)
tree06f08524b16e8b152cc9eb6a60a594121da1dcda /OpenSim/Data
parentAdding the MySQL RegionData service. (diff)
downloadopensim-SC_OLD-a251864e64223e8f797e20d016952b422685e447.zip
opensim-SC_OLD-a251864e64223e8f797e20d016952b422685e447.tar.gz
opensim-SC_OLD-a251864e64223e8f797e20d016952b422685e447.tar.bz2
opensim-SC_OLD-a251864e64223e8f797e20d016952b422685e447.tar.xz
Add the migration for scoping grid data
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/MySQL/Resources/003_GridStore.sql7
1 files changed, 7 insertions, 0 deletions
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 @@
1BEGIN;
2
3ALTER TABLE regions add column ScopeID char(36) not null default '00000000-0000-0000-0000-000000000000';
4
5create index ScopeID on regions(ScopeID);
6
7COMMIT;