diff --git a/core/Driver/SQL/MySQL.class.php b/core/Driver/SQL/MySQL.class.php index 47b0f05..a7e3831 100644 --- a/core/Driver/SQL/MySQL.class.php +++ b/core/Driver/SQL/MySQL.class.php @@ -329,7 +329,7 @@ class MySQL extends SQL { } else if($column instanceof BoolColumn) { $type = "BOOLEAN"; } else if($column instanceof JsonColumn) { - $type = "JSON"; + $type = "LONGTEXT"; # some maria db setups don't allow JSON hereā€¦ } else { $this->lastError = "Unsupported Column Type: " . get_class($column); return NULL;