diff options
author | UbitUmarov | 2015-09-21 12:07:17 +0100 |
---|---|---|
committer | UbitUmarov | 2015-09-21 12:07:17 +0100 |
commit | f272a023e2ba3d8b44852819b79ce7af1341a695 (patch) | |
tree | acf8faabb1acd8b10b8b4ad04f6687152d753084 /OpenSim/Data/SQLite/Resources/RegionStore.migrations | |
parent | revert my change to the range of greyscale image maps, setting it back to 0 ... (diff) | |
download | opensim-SC_OLD-f272a023e2ba3d8b44852819b79ce7af1341a695.zip opensim-SC_OLD-f272a023e2ba3d8b44852819b79ce7af1341a695.tar.gz opensim-SC_OLD-f272a023e2ba3d8b44852819b79ce7af1341a695.tar.bz2 opensim-SC_OLD-f272a023e2ba3d8b44852819b79ce7af1341a695.tar.xz |
SQLite db migration update
Diffstat (limited to 'OpenSim/Data/SQLite/Resources/RegionStore.migrations')
-rw-r--r-- | OpenSim/Data/SQLite/Resources/RegionStore.migrations | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/Resources/RegionStore.migrations b/OpenSim/Data/SQLite/Resources/RegionStore.migrations index 901068f..81c868a 100644 --- a/OpenSim/Data/SQLite/Resources/RegionStore.migrations +++ b/OpenSim/Data/SQLite/Resources/RegionStore.migrations | |||
@@ -612,3 +612,17 @@ ALTER TABLE primshapes ADD COLUMN LastAttachPoint int not null default '0'; | |||
612 | 612 | ||
613 | COMMIT; | 613 | COMMIT; |
614 | 614 | ||
615 | :VERSION 31 #---- avination fields plus a few others | ||
616 | |||
617 | BEGIN; | ||
618 | |||
619 | ALTER TABLE `prims` ADD COLUMN `PassTouches` BOOLEAN NOT NULL DEFAULT FALSE; | ||
620 | ALTER TABLE `prims` ADD COLUMN `PassCollisions`BOOLEAN NOT NULL DEFAULT FALSE; | ||
621 | ALTER TABLE `prims` ADD COLUMN `Vehicle` TEXT default NULL; | ||
622 | ALTER TABLE `regionsettings` ADD COLUMN `block_search` BOOLEAN NOT NULL DEFAULT FALSE;; | ||
623 | ALTER TABLE `regionsettings` ADD COLUMN `casino` BOOLEAN NOT NULL DEFAULT FALSE;; | ||
624 | ALTER TABLE `land` ADD COLUMN `SeeAVs` 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; | ||
627 | |||
628 | COMMIT; \ No newline at end of file | ||