AddAdditionalLinksToArtists::down PHP Method

down() public method

Reverse the migrations.
public down ( ) : void
return void
    public function down()
    {
        Schema::table('artists', function (Blueprint $table) {
            $table->dropColumn('bandcamp');
            $table->dropColumn('patreon');
        });
    }
AddAdditionalLinksToArtists