summaryrefslogtreecommitdiffstats
path: root/config/sql/nonces.sql
blob: d2ec5be6e018d6b240a9c970d63e5c6dfef6a0cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- Table: public.nonces

-- DROP TABLE public.nonces;

CREATE TABLE public.nonces
(
  nonce text,
  expire timestamp with time zone
)
WITH (
  OIDS=FALSE
);

GRANT ALL ON TABLE public.nonces TO kemal;