Answers for "laravel alter column name"

PHP
12

laravel migration change column name

Schema::table('users', function (Blueprint $table) {
    $table->renameColumn('from', 'to');
});
Posted by: Guest on April-24-2020
1

laravel change column

Schema::table('users', function (Blueprint $table) {
    $table->string('name', 50)->nullable()->change();
});
Posted by: Guest on April-02-2020
0

migration rename column laravel

php artisan make:migration rename_author_id_in_posts_table --table=posts
Posted by: Guest on February-09-2021

Browse Popular Code Answers by Language