Answers for "alter table column in laravel migration command"

PHP
2

how to commit changes in git command

git commit -a
Posted by: Guest on April-14-2020
2

add column in laravel migration cmnd

php artisan make:migration add_paid_to_users_table --table=users
Posted by: Guest on July-20-2021
2

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 "alter table column in laravel migration command"

Browse Popular Code Answers by Language