Answers for "migration rename table"

PHP
1

migration rename column laravel

public function down()
{
    Schema::table('posts', function (Blueprint $table) {
        $table->renameColumn('user_id', 'author_ID');
    });
}
Posted by: Guest on February-09-2021
1

migration rename column laravel

public function up()
{
    Schema::table('posts', function (Blueprint $table) {
        $table->renameColumn('author_ID', 'user_id');
    });
}
Posted by: Guest on February-09-2021
0

migration rename column laravel

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

Code answers related to "migration rename table"

Browse Popular Code Answers by Language