You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Within the Delete records without archiving section, shouldn't the line
Article::Archive.first.destroy!
be this instead
Article.first.destroy!
Also, is there a Model::Archive#restore method available? The idea of destroying a destroyed object in order to restore it just doesn't sit well for me. I would have expected it to purge the record from the archive instead.
Great library though! Love how cleanly it integrates.
The text was updated successfully, but these errors were encountered:
Within the Delete records without archiving section, shouldn't the line
be this instead
Also, is there a
Model::Archive#restore
method available? The idea of destroying a destroyed object in order to restore it just doesn't sit well for me. I would have expected it to purge the record from the archive instead.Great library though! Love how cleanly it integrates.
The text was updated successfully, but these errors were encountered: