AddCoverUpdatedAtToBeatmapsets::down PHP Method

down() public method

Reverse the migrations.
public down ( ) : void
return void
    public function down()
    {
        Schema::table('osu_beatmapsets', function (Blueprint $table) {
            $table->dropColumn('cover_updated_at');
        });
    }
AddCoverUpdatedAtToBeatmapsets