mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-14 04:04:23 +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
|