diff options
author | UbitUmarov | 2015-10-20 18:08:04 +0100 |
---|---|---|
committer | UbitUmarov | 2015-10-20 18:08:04 +0100 |
commit | 3e25430e3ac585884857c2632d7d2423f37b2116 (patch) | |
tree | 25e467bae34eabee666b2a3aa1d64845df03e104 /OpenSim/Data/MySQL/Resources/RegionStore.migrations | |
parent | stop using a Vector3 to store 3bits (diff) | |
download | opensim-SC-3e25430e3ac585884857c2632d7d2423f37b2116.zip opensim-SC-3e25430e3ac585884857c2632d7d2423f37b2116.tar.gz opensim-SC-3e25430e3ac585884857c2632d7d2423f37b2116.tar.bz2 opensim-SC-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.migrations | 8 |
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 | ||
963 | COMMIT; | 963 | COMMIT; |
964 | 964 | ||
965 | :VERSION 52 #---- STATUS ROTATION axis locks | ||
966 | |||
967 | BEGIN; | ||
968 | |||
969 | ALTER TABLE `prims` ADD COLUMN `RotationAxisLocks` tinyint(4) NOT NULL default '0'; | ||
970 | |||
971 | COMMIT; | ||
972 | |||