Fixed creating of new user groups failing

This commit is contained in:
kolaente 2018-02-18 19:13:15 +01:00
parent 0c4649c93f
commit b90a42e575
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ CREATE TABLE `' . $_POST['db_prefix'] . 'system_loggedin` (
CREATE TABLE `' . $_POST['db_prefix'] . 'system_roles` (
`id` int(11) NOT NULL,
`name` text COLLATE utf8_unicode_ci NOT NULL,
`permissions` longtext COLLATE utf8_unicode_ci NOT NULL
`permissions` longtext COLLATE utf8_unicode_ci NOT NULL DEFAULT \'{}\',
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `' . $_POST['db_prefix'] . 'system_show_stream` (
`id` int(11) NOT NULL,