How can I create non-null columns in laravel 5.7 by migrating?
$table->string('title','50')->nullable();
does not work.
What can I do?
How can I create non-null columns in laravel 5.7 by migrating?
$table->string('title','50')->nullable();
does not work.
What can I do?