CreateFriendshipsTable::up PHP Method

up() public method

public up ( )
    public function up()
    {
        Schema::create(config('friendships.tables.fr_pivot'), function (Blueprint $table) {
            $table->increments('id');
            $table->morphs('sender');
            $table->morphs('recipient');
            $table->tinyInteger('status')->default(0);
            $table->timestamps();
        });
    }
CreateFriendshipsTable