diff --git a/src/Adapter/SQLite.php b/src/Adapter/SQLite.php index 17329ed..bf2588d 100644 --- a/src/Adapter/SQLite.php +++ b/src/Adapter/SQLite.php @@ -134,7 +134,7 @@ class SQLite implements AdapterInterface, MigrateInterface, SqlAdapterInterface } if (in_array($type, [ 'JSON', 'TEXT', 'BLOB', 'GEOMETRY' ])) { - $field->default = ""; + unset($field->default); } return $typeOnly ? $type : $type . ( $length ? "($length" . ")" : "" );