X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/dc2a2c8ebd1a11e4a64555fda22c6859a51defff..801522c5c349cee50c917a933bcd39656c8dc230:/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