mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-03 02:21:33 +00:00
10 lines
280 B
Ruby
10 lines
280 B
Ruby
class DropOptionsTables < ActiveRecord::Migration[7.0]
|
|
def up
|
|
drop_table :spree_option_values_line_items
|
|
drop_table :spree_option_values_variants
|
|
drop_table :spree_product_option_types
|
|
drop_table :spree_option_values
|
|
drop_table :spree_option_types
|
|
end
|
|
end
|