Files
openfoodnetwork/db/migrate/20230809195519_drop_variant_is_master.rb
2023-08-10 12:25:18 +01:00

6 lines
122 B
Ruby

class DropVariantIsMaster < ActiveRecord::Migration[7.0]
def up
remove_column :spree_variants, :is_master
end
end