laravel-convert-migrations icon indicating copy to clipboard operation
laravel-convert-migrations copied to clipboard

doesn't recognize blob type

Open chriz74x opened this issue 10 years ago • 0 comments

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();

chriz74x avatar Apr 27 '15 15:04 chriz74x