# This migration comes from spree_promo (originally 20100501095202) class CreatePromotionRulesUsers < ActiveRecord::Migration def up create_table :promotion_rules_users do |t| t.integer :user_id, :promotion_rule_id end remove_column :promotion_rules_users, :id add_index :promotion_rules_users, :user_id add_index :promotion_rules_users, :promotion_rule_id end def down drop_table :promotion_rules_users end end