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