AddMoreFieldsToArtistTracks::down PHP Method

down() public method

Reverse the migrations.
public down ( ) : void
return void
    public function down()
    {
        Schema::table('artist_tracks', function (Blueprint $table) {
            $table->dropColumn('display_order');
            $table->dropColumn('title_romanized');
        });
    }
AddMoreFieldsToArtistTracks