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 8b0d280675
commit 8c7ab8c9f4
2 changed files with 7 additions and 1 deletions
docs
sql

@ -1,3 +1,9 @@
Version 2.1.3 ()
------------------------------------------------------------------------
* Fix SQL compatibility for creating of table "serendipity_groupconfig"
Version 2.1.2 (March 25, 2018))
------------------------------------------------------------------------

@ -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};