aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/RegionStore.migrations
diff options
context:
space:
mode:
authorUbitUmarov2015-10-20 18:08:04 +0100
committerUbitUmarov2015-10-20 18:08:04 +0100
commit3e25430e3ac585884857c2632d7d2423f37b2116 (patch)
tree25e467bae34eabee666b2a3aa1d64845df03e104 /OpenSim/Data/MySQL/Resources/RegionStore.migrations
parent stop using a Vector3 to store 3bits (diff)
downloadopensim-SC_OLD-3e25430e3ac585884857c2632d7d2423f37b2116.zip
opensim-SC_OLD-3e25430e3ac585884857c2632d7d2423f37b2116.tar.gz
opensim-SC_OLD-3e25430e3ac585884857c2632d7d2423f37b2116.tar.bz2
opensim-SC_OLD-3e25430e3ac585884857c2632d7d2423f37b2116.tar.xz
store rotation axis locks in MySql and SQlite dbs ( others need to be updated also
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 e74f9de..a3d4b5d 100644
--- a/OpenSim/Data/MySQL/Resources/RegionStore.migrations
+++ b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
@@ -962,3 +962,11 @@ ALTER TABLE `land` ADD COLUMN `GroupAVSounds` tinyint(4) NOT NULL default '1';
962 962
963COMMIT; 963COMMIT;
964 964
965:VERSION 52 #---- STATUS ROTATION axis locks
966
967BEGIN;
968
969ALTER TABLE `prims` ADD COLUMN `RotationAxisLocks` tinyint(4) NOT NULL default '0';
970
971COMMIT;
972