diff options
author | Melanie | 2012-01-30 20:34:32 +0000 |
---|---|---|
committer | Melanie | 2012-01-30 20:34:32 +0000 |
commit | c4cc626dffd87b6ab28f40c847db2def95e189b7 (patch) | |
tree | 7ec3b9a74065e962aff5cc12fb6cf02c87abe5ae | |
parent | Next step for world map overlays (diff) | |
download | opensim-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
-rw-r--r-- | OpenSim/Data/MySQL/Resources/GridStore.migrations | 9 |
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; | |||
94 | alter table regions modify column regionName varchar(128) default NULL; | 94 | alter table regions modify column regionName varchar(128) default NULL; |
95 | 95 | ||
96 | COMMIT; | 96 | COMMIT; |
97 | |||
98 | :VERSION 9 # ------------ | ||
99 | |||
100 | BEGIN; | ||
101 | |||
102 | alter table regions add column `parcelMapTexture` varchar(36) default NULL; | ||
103 | |||
104 | COMMIT; | ||
105 | |||