You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-- 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; |