Add 'expire' to filter invalid tokens

This commit is contained in:
Omar Roth
2018-11-19 18:41:11 -06:00
parent b535de690e
commit ad20d6359b
2 changed files with 3 additions and 2 deletions

View File

@@ -4,7 +4,8 @@
CREATE TABLE public.nonces
(
nonce text
nonce text,
expire timestamp with time zone,
)
WITH (
OIDS=FALSE