How do you delete an ActiveRecord object?

前端 未结 4 1627
心在旅途
心在旅途 2020-12-07 07:18

How do you delete an ActiveRecord object?

I looked at Active Record Querying and it does not have anything on deleting that I can see.

  1. Delete by

4条回答
  •  轮回少年
    2020-12-07 07:53

    There is delete, delete_all, destroy, and destroy_all.

    The docs are: older docs and Rails 3.0.0 docs

    delete doesn't instantiate the objects, while destroy does. In general, delete is faster than destroy.

提交回复
热议问题