laravel-convert-migrations
laravel-convert-migrations copied to clipboard
doesn't recognize blob type
I tried this with a DB that has a blob column in one table, the result was:
$table->('post_text')->nullable();
should be:
$table->binary('post_text')->nullable();