You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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');
The text was updated successfully, but these errors were encountered: