-
Add
with_delete
option to has_many, has_one, and belongs_to association methods:belongs_to :secret_file, with_deleted: true has_many :secrets, with_deleted: true has_one :secret, with_deleted: true
Note: To see deleted records for a has_many through association, the through model association must have
with_deleted
set totrue
.