Fixed SQL statement for creation of serendipity_groupconfig DB table (did not work in my MySQL 5.7.17)

This commit is contained in:
Garvin Hicking 2018-03-28 10:39:31 +02:00
parent 1ae46203c3
commit 270c370c2a
2 changed files with 7 additions and 2 deletions

View File

@ -28,7 +28,12 @@ Version 2.x.x (major) ()
* Change Spartacus default mirror to github (#489)
Version 2.1.2 (March 25, 2018)
Version 2.1.3 ()
------------------------------------------------------------------------
* Fix SQL compatibility for creating of table "serendipity_groupconfig"
Version 2.1.2 (March 25, 2018))
------------------------------------------------------------------------
* Exclude defunct netmirror spartacus repository

View File

@ -31,7 +31,7 @@ create table {PREFIX}groups (
create table {PREFIX}groupconfig (
id int(10) {UNSIGNED} not null default '0',
property varchar(128) default null,
property varchar(128) default '',
value varchar(32) default null,
{PRIMARY} (id, property)
) {UTF_8};