diff options
author | Diva Canto | 2009-10-05 09:19:16 -0700 |
---|---|---|
committer | Diva Canto | 2009-10-05 09:19:16 -0700 |
commit | 81c08ec74a572bb36e90070396bbc3d5e539bdfb (patch) | |
tree | eab6aaa65a3bc633e2468eeef8a3f76598b99cc0 /OpenSim/Data/MSSQL/Resources | |
parent | More error messages to warn when/if things go wrong. (diff) | |
parent | Merge branch 'master' of ssh://melanie@opensimulator.org/var/git/opensim (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Data/MSSQL/Resources/006_GridStore.sql | 8 |
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 @@ | |||
1 | BEGIN TRANSACTION | ||
2 | |||
3 | ALTER TABLE regions ADD scopeid uniqueidentifier default '00000000-0000-0000-0000-000000000000'; | ||
4 | ALTER TABLE regions ADD DEFAULT ('00000000-0000-0000-0000-000000000000') FOR [owner_uuid]; | ||
5 | ALTER TABLE regions ADD sizeX integer not null default 0; | ||
6 | ALTER TABLE regions ADD sizeY integer not null default 0; | ||
7 | |||
8 | COMMIT | ||