summaryrefslogtreecommitdiffstats
path: root/Auth/OpenID/PostgreSQLStore.php
diff options
context:
space:
mode:
Diffstat (limited to 'Auth/OpenID/PostgreSQLStore.php')
-rw-r--r--Auth/OpenID/PostgreSQLStore.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/Auth/OpenID/PostgreSQLStore.php b/Auth/OpenID/PostgreSQLStore.php
index 8babed4..15c69ce 100644
--- a/Auth/OpenID/PostgreSQLStore.php
+++ b/Auth/OpenID/PostgreSQLStore.php
@@ -64,6 +64,9 @@ class Auth_OpenID_PostgreSQLStore extends Auth_OpenID_SQLStore {
$this->sql['clean_nonce'] =
"DELETE FROM %s WHERE timestamp < ?";
+
+ $this->sql['clean_assoc'] =
+ "DELETE FROM %s WHERE issued + lifetime < ?";
}
/**