mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 18:25:33 +08:00
SQLite db migration update
This commit is contained in:
@@ -612,3 +612,17 @@ ALTER TABLE primshapes ADD COLUMN LastAttachPoint int not null default '0';
|
||||
|
||||
COMMIT;
|
||||
|
||||
:VERSION 31 #---- avination fields plus a few others
|
||||
|
||||
BEGIN;
|
||||
|
||||
ALTER TABLE `prims` ADD COLUMN `PassTouches` BOOLEAN NOT NULL DEFAULT FALSE;
|
||||
ALTER TABLE `prims` ADD COLUMN `PassCollisions`BOOLEAN NOT NULL DEFAULT FALSE;
|
||||
ALTER TABLE `prims` ADD COLUMN `Vehicle` TEXT default NULL;
|
||||
ALTER TABLE `regionsettings` ADD COLUMN `block_search` BOOLEAN NOT NULL DEFAULT FALSE;;
|
||||
ALTER TABLE `regionsettings` ADD COLUMN `casino` BOOLEAN NOT NULL DEFAULT FALSE;;
|
||||
ALTER TABLE `land` ADD COLUMN `SeeAVs` BOOLEAN NOT NULL DEFAULT TRUE;
|
||||
ALTER TABLE `land` ADD COLUMN `AnyAVSounds` BOOLEAN NOT NULL DEFAULT TRUE;
|
||||
ALTER TABLE `land` ADD COLUMN `GroupAVSounds` BOOLEAN NOT NULL DEFAULT TRUE;
|
||||
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user