mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2025-01-15 20:34:06 +01:00
ip_cleanup_scheduler: Stop destroying sessions, replace IP with nil instead
This commit is contained in:
parent
223daf9f87
commit
c5e0fac088
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ class Scheduler::IpCleanupScheduler
|
|||
private
|
||||
|
||||
def clean_ip_columns!
|
||||
SessionActivation.where('updated_at < ?', IP_RETENTION_PERIOD.ago).in_batches.destroy_all
|
||||
SessionActivation.where('updated_at < ?', IP_RETENTION_PERIOD.ago).in_batches.update_all(ip: nil)
|
||||
User.where('current_sign_in_at < ?', IP_RETENTION_PERIOD.ago).in_batches.update_all(sign_up_ip: nil)
|
||||
LoginActivity.where('created_at < ?', IP_RETENTION_PERIOD.ago).in_batches.destroy_all
|
||||
Doorkeeper::AccessToken.where('last_used_at < ?', IP_RETENTION_PERIOD.ago).in_batches.update_all(last_used_ip: nil)
|
||||
|
|
Loading…
Reference in a new issue