summaryrefslogtreecommitdiffstats
path: root/config/sql
diff options
context:
space:
mode:
Diffstat (limited to 'config/sql')
-rw-r--r--config/sql/nonces.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/sql/nonces.sql b/config/sql/nonces.sql
index 5407dca5..9693b936 100644
--- a/config/sql/nonces.sql
+++ b/config/sql/nonces.sql
@@ -4,7 +4,8 @@
CREATE TABLE public.nonces
(
- nonce text
+ nonce text,
+ expire timestamp with time zone,
)
WITH (
OIDS=FALSE