AddBillingsToUserMeta::down PHP Метод

down() публичный Метод

Reverse the migrations.
public down ( ) : void
Результат void
    public function down()
    {
        Schema::table('user_meta', function ($table) {
            $table->dropColumn(['stripe_id', 'card_brand', 'card_last_four']);
        });
    }
AddBillingsToUserMeta