I\'ve been searching around and the question was asked a few times, but no-one seem to be able to give a definite answer to it. How do you specify the integer length for the
yes, it is possible to change the length of a default column by using:
$table->string('any_text',35)->change();
you can also make it nullable by using:
$table->string('any_text',35)->nullable()->change();
I hope it works for you :)