AddSoftDeleteToBeatmapDiscussionPosts::down PHP Метод

down() публичный Метод

Reverse the migrations.
public down ( ) : void
Результат void
    public function down()
    {
        //
        Schema::table('beatmap_discussion_posts', function ($table) {
            $table->dropSoftDeletes();
            $table->dropForeign(['deleted_by_id']);
            $table->dropColumn('deleted_by_id');
        });
    }
AddSoftDeleteToBeatmapDiscussionPosts