Only update shop_id in migration

This commit is contained in:
Jason Denney
2013-11-02 15:12:55 -04:00
parent f7ce96152b
commit 3d6f698fb9
@@ -12,9 +12,8 @@ class ChangeBikeShopId < ActiveRecord::Migration
while bikes.map(&:shop_id).include? new_id
new_id += 1
end
bike.shop_id = new_id
bike.update_attribute(:shop_id, new_id)
end
bikes.each(&:save)
end
def down