Created
August 26, 2010 13:20
-
-
Save derencius/551370 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# is it risky to trust on updated_at ? | |
# Summary: all products with no price on API should be disabled. | |
start_time = Time.now | |
Product.transaction do | |
ProductApi.each do |e| | |
Product.find(e.code).update_attribute :price, e.price | |
end | |
Product.update_all :status => :disabled, ['updated_at < ?', start_time] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment