aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MSSQL/Resources/006_GridStore.sql
diff options
context:
space:
mode:
authorDiva Canto2009-10-05 09:19:16 -0700
committerDiva Canto2009-10-05 09:19:16 -0700
commit81c08ec74a572bb36e90070396bbc3d5e539bdfb (patch)
treeeab6aaa65a3bc633e2468eeef8a3f76598b99cc0 /OpenSim/Data/MSSQL/Resources/006_GridStore.sql
parentMore error messages to warn when/if things go wrong. (diff)
parentMerge branch 'master' of ssh://melanie@opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-81c08ec74a572bb36e90070396bbc3d5e539bdfb.zip
opensim-SC_OLD-81c08ec74a572bb36e90070396bbc3d5e539bdfb.tar.gz
opensim-SC_OLD-81c08ec74a572bb36e90070396bbc3d5e539bdfb.tar.bz2
opensim-SC_OLD-81c08ec74a572bb36e90070396bbc3d5e539bdfb.tar.xz
Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Data/MSSQL/Resources/006_GridStore.sql')
-rw-r--r--OpenSim/Data/MSSQL/Resources/006_GridStore.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Data/MSSQL/Resources/006_GridStore.sql b/OpenSim/Data/MSSQL/Resources/006_GridStore.sql
new file mode 100644
index 0000000..42010ce
--- /dev/null
+++ b/OpenSim/Data/MSSQL/Resources/006_GridStore.sql
@@ -0,0 +1,8 @@
1BEGIN TRANSACTION
2
3ALTER TABLE regions ADD scopeid uniqueidentifier default '00000000-0000-0000-0000-000000000000';
4ALTER TABLE regions ADD DEFAULT ('00000000-0000-0000-0000-000000000000') FOR [owner_uuid];
5ALTER TABLE regions ADD sizeX integer not null default 0;
6ALTER TABLE regions ADD sizeY integer not null default 0;
7
8COMMIT