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

-- DROP TABLE public.nonces;

CREATE TABLE public.nonces
(
  nonce text
)
WITH (
  OIDS=FALSE
);

GRANT ALL ON TABLE public.nonces TO kemal;