aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorUbitUmarov2015-09-14 03:35:01 +0100
committerUbitUmarov2015-09-14 03:35:01 +0100
commit6b54c741ca27967f47d328cb0e4c71d8f5921cd5 (patch)
treef2ccff8f0503dad8462bdfacfd4f2a8a07f59008 /OpenSim/Data
parent update ProtocolVersions (diff)
downloadopensim-SC_OLD-6b54c741ca27967f47d328cb0e4c71d8f5921cd5.zip
opensim-SC_OLD-6b54c741ca27967f47d328cb0e4c71d8f5921cd5.tar.gz
opensim-SC_OLD-6b54c741ca27967f47d328cb0e4c71d8f5921cd5.tar.bz2
opensim-SC_OLD-6b54c741ca27967f47d328cb0e4c71d8f5921cd5.tar.xz
try to add a mysql migration to avn
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/MySQL/Resources/RegionStore.migrations15
1 files changed, 15 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/RegionStore.migrations b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
index 097271a..e74f9de 100644
--- a/OpenSim/Data/MySQL/Resources/RegionStore.migrations
+++ b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
@@ -947,3 +947,18 @@ BEGIN;
947ALTER TABLE land CHANGE COLUMN LandFlags LandFlags int unsigned default null; 947ALTER TABLE land CHANGE COLUMN LandFlags LandFlags int unsigned default null;
948 948
949COMMIT; 949COMMIT;
950
951:VERSION 51 #---- avination fields
952
953BEGIN;
954
955ALTER TABLE `prims` ADD COLUMN `PassCollisions` tinyint(4) NOT NULL default '0';
956ALTER TABLE `prims` ADD COLUMN `Vehicle` TEXT default NULL;
957ALTER TABLE `regionsettings` ADD COLUMN `block_search` tinyint(4) NOT NULL default '0';
958ALTER TABLE `regionsettings` ADD COLUMN `casino` tinyint(4) NOT NULL default '0';
959ALTER TABLE `land` ADD COLUMN `SeeAVs` tinyint(4) NOT NULL default '1';
960ALTER TABLE `land` ADD COLUMN `AnyAVSounds` tinyint(4) NOT NULL default '1';
961ALTER TABLE `land` ADD COLUMN `GroupAVSounds` tinyint(4) NOT NULL default '1';
962
963COMMIT;
964