Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error model #107

Open
RozanMustafa opened this issue Apr 28, 2022 · 0 comments
Open

Error model #107

RozanMustafa opened this issue Apr 28, 2022 · 0 comments

Comments

@RozanMustafa
Copy link

I want to fire after_create callback in error model so I can delete older error records
I tried:
class Error < ApplicationRecord
after_create :delete_old

def delete_old
Error.order('id desc').offset(5).destroy_all
end
end

But didn't work

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant