When choosing InnoDB as storage engine and with the default setting for STRICT_TRANS_TABLES in MySQL >= 5.6 enabled, the insert statement in UserGroupsHooks::rebuild fails (thus failing to install) with
Error Code: 1364. Field 'sort' doesn't have a default value
since sort is defined as NOT NULL. The error can be avoided by setting the sort field to 0 in the insert.
When choosing InnoDB as storage engine and with the default setting for STRICT_TRANS_TABLES in MySQL >= 5.6 enabled, the insert statement in UserGroupsHooks::rebuild fails (thus failing to install) with
since sort is defined as NOT NULL. The error can be avoided by setting the sort field to 0 in the insert.