AddLastEditorIdToBeatmapDiscussionPosts::down PHP Method

down() public method

Reverse the migrations.
public down ( ) : void
return void
    public function down()
    {
        Schema::table('beatmap_discussion_posts', function ($table) {
            $table->dropForeign(['last_editor_id']);
            $table->dropColumn('last_editor_id');
        });
    }
AddLastEditorIdToBeatmapDiscussionPosts