Skip to content

Instantly share code, notes, and snippets.

@derencius
Created August 26, 2010 13:20
Show Gist options
  • Save derencius/551370 to your computer and use it in GitHub Desktop.
Save derencius/551370 to your computer and use it in GitHub Desktop.
# 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