AddChangeBranchToProject::down PHP Method

down() public method

Reverse the migrations.
public down ( )
    public function down()
    {
        Schema::table('projects', function (Blueprint $table) {
            $table->dropColumn('allow_other_branch');
        });
    }
AddChangeBranchToProject