📜  laravel 重命名表 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:59.835000             🧑  作者: Mango

代码示例6
public function up()
{
    Schema::table('posts', function (Blueprint $table) {
        $table->renameColumn('author_ID', 'user_id');
    });
}