php artisan rename table code example
Example 1: migration rename column laravel
public function up()
{
Schema::table('posts', function (Blueprint $table) {
$table->renameColumn('author_ID', 'user_id');
});
}
Example 2: migration rename column laravel
php artisan make:migration rename_author_id_in_posts_table --table=posts
Example 3: how to rename a table element in laravel
Schema::table('users', function (Blueprint $table) { $table->renameColumn('from', 'to');});