diff options
author | UbitUmarov | 2015-09-14 03:35:01 +0100 |
---|---|---|
committer | UbitUmarov | 2015-09-14 03:35:01 +0100 |
commit | 6b54c741ca27967f47d328cb0e4c71d8f5921cd5 (patch) | |
tree | f2ccff8f0503dad8462bdfacfd4f2a8a07f59008 /OpenSim/Data | |
parent | update ProtocolVersions (diff) | |
download | opensim-SC-6b54c741ca27967f47d328cb0e4c71d8f5921cd5.zip opensim-SC-6b54c741ca27967f47d328cb0e4c71d8f5921cd5.tar.gz opensim-SC-6b54c741ca27967f47d328cb0e4c71d8f5921cd5.tar.bz2 opensim-SC-6b54c741ca27967f47d328cb0e4c71d8f5921cd5.tar.xz |
try to add a mysql migration to avn
Diffstat (limited to 'OpenSim/Data')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/RegionStore.migrations | 15 |
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; | |||
947 | ALTER TABLE land CHANGE COLUMN LandFlags LandFlags int unsigned default null; | 947 | ALTER TABLE land CHANGE COLUMN LandFlags LandFlags int unsigned default null; |
948 | 948 | ||
949 | COMMIT; | 949 | COMMIT; |
950 | |||
951 | :VERSION 51 #---- avination fields | ||
952 | |||
953 | BEGIN; | ||
954 | |||
955 | ALTER TABLE `prims` ADD COLUMN `PassCollisions` tinyint(4) NOT NULL default '0'; | ||
956 | ALTER TABLE `prims` ADD COLUMN `Vehicle` TEXT default NULL; | ||
957 | ALTER TABLE `regionsettings` ADD COLUMN `block_search` tinyint(4) NOT NULL default '0'; | ||
958 | ALTER TABLE `regionsettings` ADD COLUMN `casino` tinyint(4) NOT NULL default '0'; | ||
959 | ALTER TABLE `land` ADD COLUMN `SeeAVs` tinyint(4) NOT NULL default '1'; | ||
960 | ALTER TABLE `land` ADD COLUMN `AnyAVSounds` tinyint(4) NOT NULL default '1'; | ||
961 | ALTER TABLE `land` ADD COLUMN `GroupAVSounds` tinyint(4) NOT NULL default '1'; | ||
962 | |||
963 | COMMIT; | ||
964 | |||