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