X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/dc2a2c8ebd1a11e4a64555fda22c6859a51defff..0444187cb6eccee4f77596c1a575d32e6c96192d:/script/cleanup diff --git a/script/cleanup b/script/cleanup index d7f29239c..10fdf9db7 100755 --- a/script/cleanup +++ b/script/cleanup @@ -2,6 +2,7 @@ require File.dirname(__FILE__) + "/../config/environment" -UserToken.delete_all("expiry < NOW()") +UserToken.where("expiry < NOW()").delete_all +OauthNonce.where("timestamp < EXTRACT(EPOCH FROM NOW() - INTERVAL '1 day')").delete_all exit 0