Answers for "how to change table name in laravel migration"

PHP
12

laravel migration change column name

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

laravel rename table

Schema::rename($currentTableName, $newTableName);
Posted by: Guest on September-15-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
0

how to rename a table element in laravel

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

Code answers related to "how to change table name in laravel migration"

Browse Popular Code Answers by Language