aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources
diff options
context:
space:
mode:
authoronefang2021-09-03 07:02:28 +1000
committeronefang2021-09-03 07:02:28 +1000
commitf350899042960c6c4d5ef7f45b5d054d00702c0b (patch)
tree5ad48ccd99f5b59fc1307e1cde46ae3bb380d42f /OpenSim/Data/MySQL/Resources
parentos_groups UUIDs are 36 charcters, not 255 varchars. (diff)
downloadopensim-SC-f350899042960c6c4d5ef7f45b5d054d00702c0b.zip
opensim-SC-f350899042960c6c4d5ef7f45b5d054d00702c0b.tar.gz
opensim-SC-f350899042960c6c4d5ef7f45b5d054d00702c0b.tar.bz2
opensim-SC-f350899042960c6c4d5ef7f45b5d054d00702c0b.tar.xz
Shorten the name field of os_groups_groups.
Diffstat (limited to 'OpenSim/Data/MySQL/Resources')
-rw-r--r--OpenSim/Data/MySQL/Resources/os_groups_Store.migrations2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/Resources/os_groups_Store.migrations b/OpenSim/Data/MySQL/Resources/os_groups_Store.migrations
index 59e320c..81a9673 100644
--- a/OpenSim/Data/MySQL/Resources/os_groups_Store.migrations
+++ b/OpenSim/Data/MySQL/Resources/os_groups_Store.migrations
@@ -5,7 +5,7 @@ BEGIN;
5CREATE TABLE IF NOT EXISTS `os_groups_groups` ( 5CREATE TABLE IF NOT EXISTS `os_groups_groups` (
6 `GroupID` char(36) NOT NULL default '', 6 `GroupID` char(36) NOT NULL default '',
7 `Location` varchar(255) NOT NULL default '', 7 `Location` varchar(255) NOT NULL default '',
8 `Name` varchar(255) NOT NULL default '', 8 `Name` varchar(250) NOT NULL default '',
9 `Charter` text NOT NULL, 9 `Charter` text NOT NULL,
10 `InsigniaID` char(36) NOT NULL default '', 10 `InsigniaID` char(36) NOT NULL default '',
11 `FounderID` char(36) NOT NULL default '', 11 `FounderID` char(36) NOT NULL default '',