invidious/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 00:41:11 +00:00
nonce text,
2018-11-20 19:14:13 +00:00
expire timestamp with time zone
)
WITH (
OIDS=FALSE
);
GRANT ALL ON TABLE public.nonces TO kemal;