Fixed creating tables on installation

This commit is contained in:
kolaente 2018-03-07 12:44:04 +01:00
parent ae96503cc1
commit 90e121d367
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 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,