mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #33899 from bogdanvlviv/follow-up-33405
Raise `ActiveRecord::InvalidForeignKey` in `before_destroy` for a blob if attachments exist
This commit is contained in:
commit
fca8da18ac
1 changed files with 4 additions and 0 deletions
|
@ -35,6 +35,10 @@ class ActiveStorage::Blob < ActiveRecord::Base
|
|||
|
||||
scope :unattached, -> { left_joins(:attachments).where(ActiveStorage::Attachment.table_name => { blob_id: nil }) }
|
||||
|
||||
before_destroy(prepend: true) do
|
||||
raise ActiveRecord::InvalidForeignKey if attachments.exists?
|
||||
end
|
||||
|
||||
class << self
|
||||
# You can used the signed ID of a blob to refer to it on the client side without fear of tampering.
|
||||
# This is particularly helpful for direct uploads where the client-side needs to refer to the blob
|
||||
|
|
Loading…
Reference in a new issue