Actions
Bug #48638
closedAccess rights for user groups field too small
Status:
Rejected
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2013-05-29
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
I have over 100 user groups. The field "access rights for user groups" of a content item is too small or you can not arrange enough groups. I have changed in the tt_content table the fe_group field of varchar(100) to varchar(255). Can you increase the value for the field in the core?
(Sorry for my bad english)
Updated by Mathias Schreiber almost 10 years ago
- Status changed from New to Rejected
- Is Regression set to No
Increasing the fieldsize is situational.
Here's what you can (and should) do:
Write a small extensions that resizes the field to a size you need with an ext_tables.sql file.
If you are not familiar with the syntax:
Just write a CREATE TABLE statement that has the field fe_groups with the field definition you need for your project.
The database analyzer will then respect this file and create the field in the appropriate size.
Actions