AddImageToArtistsTable::down PHP Méthode

down() public méthode

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