From 270c370c2a9fc67f00ef1f8391b22140a871c232 Mon Sep 17 00:00:00 2001 From: Garvin Hicking Date: Wed, 28 Mar 2018 10:39:31 +0200 Subject: [PATCH] Fixed SQL statement for creation of serendipity_groupconfig DB table (did not work in my MySQL 5.7.17) --- docs/NEWS | 7 ++++++- sql/db.sql | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/NEWS b/docs/NEWS index 1863624b..6ca58762 100644 --- a/docs/NEWS +++ b/docs/NEWS @@ -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 diff --git a/sql/db.sql b/sql/db.sql index c6a9fc81..46caefc5 100644 --- a/sql/db.sql +++ b/sql/db.sql @@ -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};