Answers for "rename the foreign column in migration laravel"

PHP
5

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

rename migration laravel

php artisan make:migration alter_your_table --table=your_table
Posted by: Guest on May-16-2021

Code answers related to "rename the foreign column in migration laravel"

Browse Popular Code Answers by Language