Renamed group table name in db-mysql.sql

Signed-off-by: Janos SUTO <sj@acts.hu>
This commit is contained in:
Janos SUTO 2023-01-29 18:01:01 +01:00
parent ebab0eabcc
commit d944fe2c2b

View File

@ -242,7 +242,7 @@ create table if not exists `email_groups` (
) ENGINE=InnoDB;
create table if not exists `group` (
create table if not exists `usergroup` (
`id` bigint unsigned not null auto_increment primary key,
`groupname` char(128) not null unique
) ENGINE=InnoDB;