Fixed SQL statement for creation of serendipity_groupconfig DB table (did not work in my MySQL 5.7.17)
This commit is contained in:
parent
1ae46203c3
commit
270c370c2a
@ -28,7 +28,12 @@ Version 2.x.x (major) ()
|
|||||||
|
|
||||||
* Change Spartacus default mirror to github (#489)
|
* 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
|
* Exclude defunct netmirror spartacus repository
|
||||||
|
@ -31,7 +31,7 @@ create table {PREFIX}groups (
|
|||||||
|
|
||||||
create table {PREFIX}groupconfig (
|
create table {PREFIX}groupconfig (
|
||||||
id int(10) {UNSIGNED} not null default '0',
|
id int(10) {UNSIGNED} not null default '0',
|
||||||
property varchar(128) default null,
|
property varchar(128) default '',
|
||||||
value varchar(32) default null,
|
value varchar(32) default null,
|
||||||
{PRIMARY} (id, property)
|
{PRIMARY} (id, property)
|
||||||
) {UTF_8};
|
) {UTF_8};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user