aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authoronefang2021-09-09 20:54:02 +1000
committeronefang2021-09-09 20:54:02 +1000
commit3f2561dbf5de48e59118b4482a2a3ea8c4515617 (patch)
tree0f50bf24a5d6736a252769c7ba861f4f0b25916b
parentWhat numbnuts thought UUIDs should be varchar(255)? (diff)
downloadopensim-SC-3f2561dbf5de48e59118b4482a2a3ea8c4515617.zip
opensim-SC-3f2561dbf5de48e59118b4482a2a3ea8c4515617.tar.gz
opensim-SC-3f2561dbf5de48e59118b4482a2a3ea8c4515617.tar.bz2
opensim-SC-3f2561dbf5de48e59118b4482a2a3ea8c4515617.tar.xz
Another database schema fix for crazy.
-rw-r--r--OpenSim/Data/MySQL/Resources/RegionStore.migrations2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/Resources/RegionStore.migrations b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
index 83bc532..fe49fef 100644
--- a/OpenSim/Data/MySQL/Resources/RegionStore.migrations
+++ b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
@@ -335,7 +335,7 @@ CREATE TABLE IF NOT EXISTS `regionwindlight` (
335) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; 335) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
336 336
337CREATE TABLE IF NOT EXISTS `spawn_points` ( 337CREATE TABLE IF NOT EXISTS `spawn_points` (
338 `RegionID` varchar(36) CHARACTER SET utf8mb4 COLLATE utf8_unicode_ci NOT NULL, 338 `RegionID` char(36) NOT NULL,
339 `Yaw` float NOT NULL, 339 `Yaw` float NOT NULL,
340 `Pitch` float NOT NULL, 340 `Pitch` float NOT NULL,
341 `Distance` float NOT NULL, 341 `Distance` float NOT NULL,