invidious-mod/config/sql/nonces.sql

14 行
200 B
MySQL
Raw 通常表示 履歴

-- Table: public.nonces
-- DROP TABLE public.nonces;
CREATE TABLE public.nonces
(
2018-11-20 09:41:11 +09:00
nonce text,
2018-11-21 04:14:13 +09:00
expire timestamp with time zone
)
WITH (
OIDS=FALSE
);
GRANT ALL ON TABLE public.nonces TO kemal;