Domanda

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.

È stato utile?

Soluzione

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top