最好的做法是在具有关系迁移的create table的down方法中编写掉落外部关系吗?

时间:2018-07-04 09:16:41

标签: php laravel-5.6 laravel-migrations

  

我的代码如下,所以我的问题是要在创建迁移表中的down方法中删除关联关系吗?什么是编写迁移的最佳方法?创建与外键等关系相关的表

<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateUserRoleTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('user_role', function (Blueprint $table) {
            $table->uuid('id');
            $table->uuid('user_id');
            $table->string('name', 255);
            $table->softDeletes();
            $table->foreign('user_id')->references('id')->on('users');
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::table('user_role', function (Blueprint $table) {
            $table->dropForeign('user_id');
            $table->dropIfExists();
        });
    }
}

0 个答案:

没有答案