AddImageToArtistsTable::down PHP 메소드

down() 공개 메소드

Reverse the migrations.
public down ( ) : void
리턴 void
    public function down()
    {
        Schema::table('artists', function (Blueprint $table) {
            $table->dropColumn('image');
        });
    }
AddImageToArtistsTable