From 90e121d36770af83f9b183693e05089bfe0833bf Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 7 Mar 2018 12:44:04 +0100 Subject: [PATCH] Fixed creating tables on installation --- 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 4132665..7b5bce4 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 DEFAULT \'{}\', + `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,