aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/GridStore.migrations
diff options
context:
space:
mode:
authorMelanie2012-01-30 20:34:32 +0000
committerMelanie2012-01-30 20:34:32 +0000
commitc4cc626dffd87b6ab28f40c847db2def95e189b7 (patch)
tree7ec3b9a74065e962aff5cc12fb6cf02c87abe5ae /OpenSim/Data/MySQL/Resources/GridStore.migrations
parentNext step for world map overlays (diff)
downloadopensim-SC_OLD-c4cc626dffd87b6ab28f40c847db2def95e189b7.zip
opensim-SC_OLD-c4cc626dffd87b6ab28f40c847db2def95e189b7.tar.gz
opensim-SC_OLD-c4cc626dffd87b6ab28f40c847db2def95e189b7.tar.bz2
opensim-SC_OLD-c4cc626dffd87b6ab28f40c847db2def95e189b7.tar.xz
Add the needed column in the regions table and a few tweaks.
Warning: Contains a Migration Warning: Cannot guarantee nut free
Diffstat (limited to 'OpenSim/Data/MySQL/Resources/GridStore.migrations')
-rw-r--r--OpenSim/Data/MySQL/Resources/GridStore.migrations9
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/GridStore.migrations b/OpenSim/Data/MySQL/Resources/GridStore.migrations
index eda6dbb..98ba8c5 100644
--- a/OpenSim/Data/MySQL/Resources/GridStore.migrations
+++ b/OpenSim/Data/MySQL/Resources/GridStore.migrations
@@ -94,3 +94,12 @@ BEGIN;
94alter table regions modify column regionName varchar(128) default NULL; 94alter table regions modify column regionName varchar(128) default NULL;
95 95
96COMMIT; 96COMMIT;
97
98:VERSION 9 # ------------
99
100BEGIN;
101
102alter table regions add column `parcelMapTexture` varchar(36) default NULL;
103
104COMMIT;
105