invidious/config/sql/nonces.sql

14 lines
201 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,
expire timestamp with time zone,
)
WITH (
OIDS=FALSE
);
GRANT ALL ON TABLE public.nonces TO kemal;