invidious-experimenting/config/sql/nonces.sql

14 lines
200 B
MySQL
Raw Normal View History

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