update group name length

This commit is contained in:
Jan 2025-11-17 11:41:11 +01:00
parent 0a3d759733
commit 35ea0da5a9
2 changed files with 2 additions and 2 deletions

View file

@ -108,7 +108,7 @@ CREATE TABLE IF NOT EXISTS `sys_group`
(
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
`group_name` VARCHAR(64) NOT NULL,
`group_description` VARCHAR(128) NOT NULL,
`group_description` TEXT NOT NULL,
UNIQUE KEY `idx_group_name` (`group_name`)
) COMMENT 'Defines user groups for access management';

View file

@ -108,7 +108,7 @@ CREATE TABLE IF NOT EXISTS `sys_group`
(
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
`group_name` VARCHAR(64) NOT NULL,
`group_description` VARCHAR(128) NOT NULL,
`group_description` TEXT NOT NULL,
UNIQUE KEY `idx_group_name` (`group_name`)
) COMMENT 'Defines user groups for access management';