invidious/config/sql/nonces.sql

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

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