diff options
author | Justin Clark-Casey (justincc) | 2012-01-30 21:34:40 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-01-30 21:34:40 +0000 |
commit | dbc039783b9e7c6fd35b7a4ddeae130b8472e47f (patch) | |
tree | 74efd0d057166de50970b88275ac4dca92bebf4a /OpenSim/Data | |
parent | lock SceneObjectGroupsByFullID in SceneGraph.ForEachSOG() to stop failure if ... (diff) | |
parent | Patch in the rest of the maptile stuff (diff) | |
download | opensim-SC_OLD-dbc039783b9e7c6fd35b7a4ddeae130b8472e47f.zip opensim-SC_OLD-dbc039783b9e7c6fd35b7a4ddeae130b8472e47f.tar.gz opensim-SC_OLD-dbc039783b9e7c6fd35b7a4ddeae130b8472e47f.tar.bz2 opensim-SC_OLD-dbc039783b9e7c6fd35b7a4ddeae130b8472e47f.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Data')
-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 | |||