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/SQLite/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/SQLite/Resources/RegionStore.migrations')
-rw-r--r-- | OpenSim/Data/SQLite/Resources/RegionStore.migrations | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLite/Resources/RegionStore.migrations b/OpenSim/Data/SQLite/Resources/RegionStore.migrations index 81c868a..f66be34 100644 --- a/OpenSim/Data/SQLite/Resources/RegionStore.migrations +++ b/OpenSim/Data/SQLite/Resources/RegionStore.migrations | |||
@@ -625,4 +625,12 @@ ALTER TABLE `land` ADD COLUMN `SeeAVs` BOOLEAN NOT NULL DEFAULT TRUE; | |||
625 | ALTER TABLE `land` ADD COLUMN `AnyAVSounds` BOOLEAN NOT NULL DEFAULT TRUE; | 625 | ALTER TABLE `land` ADD COLUMN `AnyAVSounds` BOOLEAN NOT NULL DEFAULT TRUE; |
626 | ALTER TABLE `land` ADD COLUMN `GroupAVSounds` BOOLEAN NOT NULL DEFAULT TRUE; | 626 | ALTER TABLE `land` ADD COLUMN `GroupAVSounds` BOOLEAN NOT NULL DEFAULT TRUE; |
627 | 627 | ||
628 | COMMIT; \ No newline at end of file | 628 | COMMIT; |
629 | |||
630 | :VERSION 32 #---- Rotation axis locks | ||
631 | |||
632 | BEGIN; | ||
633 | |||
634 | ALTER TABLE prims ADD COLUMN `RotationAxisLocks` tinyint(4) NOT NULL default '0'; | ||
635 | |||
636 | COMMIT; | ||