AddBillingsToUserMeta::down PHP Method

down() public method

Reverse the migrations.
public down ( ) : void
return void
    public function down()
    {
        Schema::table('user_meta', function ($table) {
            $table->dropColumn(['stripe_id', 'card_brand', 'card_last_four']);
        });
    }
AddBillingsToUserMeta