Answers for "how do i change my table name in 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

Code answers related to "how do i change my table name in migration"

Browse Popular Code Answers by Language