invidious/config/sql/nonces.sql

23 lines
437 B
MySQL
Raw Normal View History

-- Table: public.nonces
-- DROP TABLE public.nonces;
2021-01-16 20:44:31 -05:00
CREATE TABLE IF NOT EXISTS public.nonces
(
2018-11-19 19:41:11 -05:00
nonce text,
expire timestamp with time zone,
CONSTRAINT nonces_id_key UNIQUE (nonce)
);
2021-01-16 20:44:31 -05:00
GRANT ALL ON TABLE public.nonces TO current_user;
-- Index: public.nonces_nonce_idx
-- DROP INDEX public.nonces_nonce_idx;
2021-01-16 20:44:31 -05:00
CREATE INDEX IF NOT EXISTS nonces_nonce_idx
ON public.nonces
USING btree
(nonce COLLATE pg_catalog."default");