ShawnClake / UserExtended

An extension to the existing RainLab.User plugin for OctoberCMS
http://octobercms.com/plugin/clake-userextended
GNU General Public License v3.0
23 stars 12 forks source link

Maria DB Support #139

Open G470 opened 3 years ago

G470 commented 3 years ago

Please add Support for MariaDB. Currently the installation procedure throws syntax errors during create table process because the data type JSON is used. This can be replaced by LONGTEXT and should work as well :).

$table->json('validation'); $table->json('data'); $table->json('flags'); could be

$table->longtext('validation'); $table->longtext('data'); $table->longtext('flags');