mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-20 00:37:26 +00:00
7 lines
184 B
Ruby
7 lines
184 B
Ruby
class AddGroupBuyFields < ActiveRecord::Migration
|
|
def change
|
|
add_column :spree_products, :group_buy, :boolean
|
|
add_column :spree_line_items, :max_quantity, :integer
|
|
end
|
|
end
|