mirror of
https://github.com/iv-org/invidious
synced 2024-11-09 01:10:27 +00:00
13 lines
165 B
MySQL
13 lines
165 B
MySQL
|
-- Table: public.nonces
|
||
|
|
||
|
-- DROP TABLE public.nonces;
|
||
|
|
||
|
CREATE TABLE public.nonces
|
||
|
(
|
||
|
nonce text
|
||
|
)
|
||
|
WITH (
|
||
|
OIDS=FALSE
|
||
|
);
|
||
|
|
||
|
GRANT ALL ON TABLE public.nonces TO kemal;
|