Answers for "laravel alter table migration down function"

PHP
15

down last migration laravel

php artisan migrate:rollback --step=1
Posted by: Guest on May-13-2020
3

laravel migration update table column type

Schema::table('users', function ($table) {
    $table->string('name', 50)->change();
});
We could also modify a column to be nullable:

Schema::table('users', function ($table) {
    $table->string('name', 50)->nullable()->change();
});
Posted by: Guest on July-31-2021

Code answers related to "laravel alter table migration down function"

Browse Popular Code Answers by Language