From b90a42e57501261d77d5158edd066ab0e39a46be Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 18 Feb 2018 19:13:15 +0100 Subject: [PATCH] Fixed creating of new user groups failing --- admin/install-dev.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/install-dev.php b/admin/install-dev.php index cd91801..4132665 100755 --- a/admin/install-dev.php +++ b/admin/install-dev.php @@ -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,