aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/RegionStore.migrations
diff options
context:
space:
mode:
authorMelanie2013-02-05 20:09:45 +0000
committerMelanie2013-02-05 20:09:45 +0000
commit6bce4bc11291a6833f4645feeb58024deefe32ee (patch)
treef8815e0eaa129c4c367e09ab1b133e4d4ade29b7 /OpenSim/Data/MySQL/Resources/RegionStore.migrations
parentTry to fix uploaded mesh rotations - code from Avination code base. (diff)
parentFix bug where viewers would not see the "Module command functions not enabled... (diff)
downloadopensim-SC-6bce4bc11291a6833f4645feeb58024deefe32ee.zip
opensim-SC-6bce4bc11291a6833f4645feeb58024deefe32ee.tar.gz
opensim-SC-6bce4bc11291a6833f4645feeb58024deefe32ee.tar.bz2
opensim-SC-6bce4bc11291a6833f4645feeb58024deefe32ee.tar.xz
Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim
Diffstat (limited to 'OpenSim/Data/MySQL/Resources/RegionStore.migrations')
-rw-r--r--OpenSim/Data/MySQL/Resources/RegionStore.migrations8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/RegionStore.migrations b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
index 5b59779..c48aec2 100644
--- a/OpenSim/Data/MySQL/Resources/RegionStore.migrations
+++ b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
@@ -902,3 +902,11 @@ BEGIN;
902CREATE TABLE `regionextra` (`RegionID` char(36) not null, `Name` varchar(32) not null, `value` text, primary key(`RegionID`, `Name`)); 902CREATE TABLE `regionextra` (`RegionID` char(36) not null, `Name` varchar(32) not null, `value` text, primary key(`RegionID`, `Name`));
903 903
904COMMIT; 904COMMIT;
905
906:VERSION 46 #---------------- Dynamic attributes
907
908BEGIN;
909
910ALTER TABLE prims ADD COLUMN DynAttrs TEXT;
911
912COMMIT;