From c56d712acaefe217774192a7335b9d2e40d2a03d Mon Sep 17 00:00:00 2001 From: Krzysztof Adamczyk <k.adamczyk@macopedia.pl> Date: Sat, 22 Jun 2013 16:38:56 +0200 Subject: [PATCH] [FEATURE] Increase size of be_groups table subgroup field Change field subgroup from varchar(255) to text to allow storing more subgroups. Resolves: #36505 Releases: 6.2 Change-Id: Iec8cbc3fa83d03a891d4854fcf67c2418ef39d27 Reviewed-on: https://review.typo3.org/21593 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn Reviewed-by: Philipp Gampe Tested-by: Philipp Gampe --- typo3/sysext/core/ext_tables.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/core/ext_tables.sql b/typo3/sysext/core/ext_tables.sql index 1b1bce47c66c..dee2ac6adbd5 100644 --- a/typo3/sysext/core/ext_tables.sql +++ b/typo3/sysext/core/ext_tables.sql @@ -27,7 +27,7 @@ CREATE TABLE be_groups ( lockToDomain varchar(50) DEFAULT '' NOT NULL, deleted tinyint(1) unsigned DEFAULT '0' NOT NULL, TSconfig text, - subgroup varchar(255) DEFAULT '' NOT NULL, + subgroup text, hide_in_lists tinyint(4) DEFAULT '0' NOT NULL, workspace_perms tinyint(3) DEFAULT '1' NOT NULL, PRIMARY KEY (uid), -- GitLab