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