invidious-mod/config/sql/nonces.sql

23 行
437 B
MySQL
Raw 通常表示 履歴

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