mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-01 16:33:20 +05:30
24 lines
490 B
SQL
24 lines
490 B
SQL
-- Table: public.session_ids
|
|
|
|
-- DROP TABLE public.session_ids;
|
|
|
|
CREATE TABLE IF NOT EXISTS 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.session_ids TO current_user;
|
|
|
|
-- Index: public.session_ids_id_idx
|
|
|
|
-- DROP INDEX public.session_ids_id_idx;
|
|
|
|
CREATE INDEX IF NOT EXISTS session_ids_id_idx
|
|
ON public.session_ids
|
|
USING btree
|
|
(id COLLATE pg_catalog."default");
|
|
|