Zmiana migracji laravel długość kolumny
Schema::table('users', function ($table) {
$table->string('name', 50)->change();
});
Clever Cicada
Schema::table('users', function ($table) {
$table->string('name', 50)->change();
});
Schema::rename($currentTableName, $newTableName);