diff options
author | Melanie | 2012-01-23 21:23:55 +0000 |
---|---|---|
committer | Melanie | 2012-01-23 21:23:55 +0000 |
commit | 48379e644206bf59e5e2059902f1d7dfd1be5e94 (patch) | |
tree | fb0dde467424e5ed0d99e55fb2065c14598c5ca1 /OpenSim/Data/MySQL/Resources/RegionStore.migrations | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-48379e644206bf59e5e2059902f1d7dfd1be5e94.zip opensim-SC_OLD-48379e644206bf59e5e2059902f1d7dfd1be5e94.tar.gz opensim-SC_OLD-48379e644206bf59e5e2059902f1d7dfd1be5e94.tar.bz2 opensim-SC_OLD-48379e644206bf59e5e2059902f1d7dfd1be5e94.tar.xz |
IMPORTANT!!!!! Please READ. DO NOT Use this version or any before it since the
Telehub commits! They will eat your babies and corrupt your database while
they munch. DO NOT use anything from the first Telehub commit to this one.
FIRST GOOD COMMIT is the one FOLLOWING this one. You have been warned.
Diffstat (limited to 'OpenSim/Data/MySQL/Resources/RegionStore.migrations')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/RegionStore.migrations | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/OpenSim/Data/MySQL/Resources/RegionStore.migrations b/OpenSim/Data/MySQL/Resources/RegionStore.migrations index 3132148..720e200 100644 --- a/OpenSim/Data/MySQL/Resources/RegionStore.migrations +++ b/OpenSim/Data/MySQL/Resources/RegionStore.migrations | |||
@@ -848,21 +848,12 @@ COMMIT; | |||
848 | BEGIN; | 848 | BEGIN; |
849 | CREATE TABLE IF NOT EXISTS `spawn_points` ( | 849 | CREATE TABLE IF NOT EXISTS `spawn_points` ( |
850 | `RegionID` varchar(36) COLLATE utf8_unicode_ci NOT NULL, | 850 | `RegionID` varchar(36) COLLATE utf8_unicode_ci NOT NULL, |
851 | `PointX` float NOT NULL, | 851 | `Yaw` float NOT NULL, |
852 | `PointY` float NOT NULL, | 852 | `Pitch` float NOT NULL, |
853 | `PointZ` float NOT NULL, | 853 | `Distance` float NOT NULL, |
854 | KEY `RegionID` (`RegionID`) | 854 | KEY `RegionID` (`RegionID`) |
855 | ) ENGINE=Innodb; | 855 | ) ENGINE=Innodb; |
856 | 856 | ||
857 | ALTER TABLE `regionsettings` ADD COLUMN `TelehubObject` varchar(36) NOT NULL; | 857 | ALTER TABLE `regionsettings` ADD COLUMN `TelehubObject` varchar(36) NOT NULL; |
858 | ALTER TABLE `regionsettings` ADD COLUMN `TelehubName` varchar(255) NOT NULL; | ||
859 | ALTER TABLE `regionsettings` ADD COLUMN `TelehubEnabled` tinyint(4) NOT NULL; | ||
860 | ALTER TABLE `regionsettings` ADD COLUMN `TelehubPosX` float NOT NULL; | ||
861 | ALTER TABLE `regionsettings` ADD COLUMN `TelehubPosY` float NOT NULL; | ||
862 | ALTER TABLE `regionsettings` ADD COLUMN `TelehubPosZ` float NOT NULL; | ||
863 | ALTER TABLE `regionsettings` ADD COLUMN `TelehubRotX` float NOT NULL; | ||
864 | ALTER TABLE `regionsettings` ADD COLUMN `TelehubRotY` float NOT NULL; | ||
865 | ALTER TABLE `regionsettings` ADD COLUMN `TelehubRotZ` float NOT NULL; | ||
866 | ALTER TABLE `regionsettings` ADD COLUMN `TelehubRotW` float NOT NULL; | ||
867 | COMMIT; | 858 | COMMIT; |
868 | 859 | ||