mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-02 08:53:13 +05:30
24 lines
458 B
MySQL
24 lines
458 B
MySQL
|
-- Table: public.session_ids
|
||
|
|
||
|
-- DROP TABLE public.session_ids;
|
||
|
|
||
|
CREATE TABLE public.session_ids
|
||
|
(
|
||
|
id text NOT NULL,
|
||
|
email text,
|
||
|
issued timestamp with time zone,
|
||
|
CONSTRAINT session_ids_pkey PRIMARY KEY (id)
|
||
|
);
|
||
|
|
||
|
GRANT ALL ON TABLE public.channel_videos TO kemal;
|
||
|
|
||
|
-- Index: public.session_ids_id_idx
|
||
|
|
||
|
-- DROP INDEX public.session_ids_id_idx;
|
||
|
|
||
|
CREATE INDEX session_ids_id_idx
|
||
|
ON public.session_ids
|
||
|
USING btree
|
||
|
(id COLLATE pg_catalog."default");
|
||
|
|