aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-01-24 20:36:16 +0000
committerJustin Clark-Casey (justincc)2012-01-24 20:36:16 +0000
commita704d444f2f1a4887598cd9eb2f59c0b4c595f2b (patch)
tree066a47464322b9e73687f60d8308e34efbb45568 /OpenSim/Data/MySQL/Resources
parentRestrict accessible of ODECharacter Shell and Body. Add method doc and some ... (diff)
parentTeleport routing, part 1 (diff)
downloadopensim-SC-a704d444f2f1a4887598cd9eb2f59c0b4c595f2b.zip
opensim-SC-a704d444f2f1a4887598cd9eb2f59c0b4c595f2b.tar.gz
opensim-SC-a704d444f2f1a4887598cd9eb2f59c0b4c595f2b.tar.bz2
opensim-SC-a704d444f2f1a4887598cd9eb2f59c0b4c595f2b.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/MySQL/Resources/RegionStore.migrations17
1 files changed, 16 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/Resources/RegionStore.migrations b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
index 987625b..720e200 100644
--- a/OpenSim/Data/MySQL/Resources/RegionStore.migrations
+++ b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
@@ -841,4 +841,19 @@ alter table regionban ENGINE = MyISAM;
841alter table regionsettings ENGINE = MyISAM; 841alter table regionsettings ENGINE = MyISAM;
842alter table terrain ENGINE = MyISAM; 842alter table terrain ENGINE = MyISAM;
843 843
844COMMIT; \ No newline at end of file 844COMMIT;
845
846:VERSION 39 #--------------- Telehub support
847
848BEGIN;
849CREATE TABLE IF NOT EXISTS `spawn_points` (
850 `RegionID` varchar(36) COLLATE utf8_unicode_ci NOT NULL,
851 `Yaw` float NOT NULL,
852 `Pitch` float NOT NULL,
853 `Distance` float NOT NULL,
854 KEY `RegionID` (`RegionID`)
855) ENGINE=Innodb;
856
857ALTER TABLE `regionsettings` ADD COLUMN `TelehubObject` varchar(36) NOT NULL;
858COMMIT;
859