Question

Usually, if we specify :dependent => :destroy or :dependent => :delete AR call DELETE query for each row of association. If we use ModelName.delete(batch_of_ids) AR call single resuest like DELETE ... FROM ... WHERE ... IN (batch_of_ids). Is any possibility to destroy association by single query without definitions own methods? For example something like activerecord-import gem, but for delete.

Was it helpful?

Solution

You can use dependent: :delete_all to delete all of the records in a single query.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top