Attachments associate records with blobs. Usually that's a one record-many blobs relationship, but it is possible to associate many different records with the same blob. A foreign-key constraint on the attachments table prevents blobs from being purged if they’re still attached to any records.
Attachments also have access to all methods from ActiveStorage::Blob
.
Methods
- P
Instance Public methods
purge() Link
Synchronously deletes the attachment and purges the blob.
purge_later() Link
Deletes the attachment and enqueues a background job to purge the blob.