Answers for "laravel migration files creation to exsing database to change 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
2

php artisan see last migration

php artisan migrate:status
Posted by: Guest on May-06-2020

Code answers related to "laravel migration files creation to exsing database to change column name"

Browse Popular Code Answers by Language