aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/004_GridStore.sql
diff options
context:
space:
mode:
authorMelanie2009-09-27 21:17:23 +0100
committerMelanie2009-09-27 21:17:23 +0100
commit8e091f590375d2b63c100e45a187b6cbfa76e161 (patch)
treed3123da98ecd61eaf419ea3938190ecbacd2e250 /OpenSim/Data/MySQL/Resources/004_GridStore.sql
parentMerge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-8e091f590375d2b63c100e45a187b6cbfa76e161.zip
opensim-SC_OLD-8e091f590375d2b63c100e45a187b6cbfa76e161.tar.gz
opensim-SC_OLD-8e091f590375d2b63c100e45a187b6cbfa76e161.tar.bz2
opensim-SC_OLD-8e091f590375d2b63c100e45a187b6cbfa76e161.tar.xz
Add the Migration for the regions table
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/MySQL/Resources/004_GridStore.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/004_GridStore.sql b/OpenSim/Data/MySQL/Resources/004_GridStore.sql
new file mode 100644
index 0000000..2238a88
--- /dev/null
+++ b/OpenSim/Data/MySQL/Resources/004_GridStore.sql
@@ -0,0 +1,6 @@
1BEGIN;
2
3ALTER TABLE regions add column sizeX integer not null default 0;
4ALTER TABLE regions add column sizeY integer not null default 0;
5
6COMMIT;