Files
openfoodnetwork/db/migrate/20120327000655_create_promotion_rules.rb
Andrew Spinks cd1938a74e spree install.
2012-03-27 11:06:49 +11:00

25 lines
666 B
Ruby

class CreatePromotionRules < ActiveRecord::Migration
def up
create_table :promotion_rules do |t|
t.references :promotion, :user, :product_group
t.string :type
t.timestamps
end
add_index :promotion_rules, :product_group_id
add_index :promotion_rules, :user_id
create_table :products_promotion_rules do |t|
t.integer :product_id, :promotion_rule_id
end
remove_column :products_promotion_rules, :id
add_index :products_promotion_rules, :product_id
add_index :products_promotion_rules, :promotion_rule_id
end
def down
drop_table :promotion_rules
drop_table :products_promotion_rules
end
end