Opower IPO today
businesswire.com1 pointsby sethco0 comments
Person.delete_all("created_at < '2012-01-01'")
will generate the sql command "delete from persons where created_at < '2012-01-01'"
You can use normal AR conditions of course. For example: Person.delete_all(["created_at < ?", Time.now.beginning_of_year])
That will not run any callbacks of course since the data is never being pulled back into your code and AR objects are not instantiated. If you need callbacks to run (for example to delete or update related objects) then look at the much slower ActiveRecord::Base#destroy_all.