2018-11-18 00:48:12 +05:30
|
|
|
-- Table: public.nonces
|
|
|
|
|
|
|
|
-- DROP TABLE public.nonces;
|
|
|
|
|
|
|
|
CREATE TABLE public.nonces
|
|
|
|
(
|
2018-11-20 06:11:11 +05:30
|
|
|
nonce text,
|
|
|
|
expire timestamp with time zone,
|
2018-11-18 00:48:12 +05:30
|
|
|
)
|
|
|
|
WITH (
|
|
|
|
OIDS=FALSE
|
|
|
|
);
|
|
|
|
|
|
|
|
GRANT ALL ON TABLE public.nonces TO kemal;
|