Files
openfoodnetwork/db/migrate/20120802031147_add_group_buy_fields.rb
2012-08-02 13:15:17 +10:00

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