You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
invidious/config/sql/channels.sql

26 lines
560 B
MySQL

7 years ago
-- Table: public.channels
-- DROP TABLE public.channels;
CREATE TABLE public.channels
(
id text COLLATE pg_catalog."default" NOT NULL,
author text COLLATE pg_catalog."default",
7 years ago
updated timestamp with time zone,
CONSTRAINT channels_id_key UNIQUE (id)
7 years ago
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
GRANT ALL ON TABLE public.channels TO kemal;
7 years ago
-- Index: channels_id_idx
-- DROP INDEX public.channels_id_idx;
CREATE INDEX channels_id_idx
ON public.channels USING btree
(id COLLATE pg_catalog."default")
TABLESPACE pg_default;