Skip to content

v0.0.8

Latest
Compare
Choose a tag to compare
@ngan ngan released this 11 Dec 04:13
· 14 commits to master since this release
  • 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 to true.