invidious/config/sql/videos.sql

36 lines
897 B
MySQL
Raw Normal View History

-- Table: public.videos
2018-03-25 05:44:17 +02:00
-- DROP TABLE public.videos;
CREATE TABLE public.videos
(
id text COLLATE pg_catalog."default" NOT NULL,
info text COLLATE pg_catalog."default",
updated timestamp with time zone,
2018-01-29 03:31:35 +01:00
title text COLLATE pg_catalog."default",
views bigint,
likes integer,
dislikes integer,
wilson_score double precision,
2018-02-03 04:44:10 +01:00
published timestamp with time zone,
2018-02-27 01:58:45 +01:00
description text COLLATE pg_catalog."default",
2018-03-17 01:45:37 +01:00
language text COLLATE pg_catalog."default",
2018-06-02 00:24:16 +02:00
author text COLLATE pg_catalog."default",
ucid text COLLATE pg_catalog."default",
CONSTRAINT videos_pkey PRIMARY KEY (id)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
GRANT ALL ON TABLE public.videos TO kemal;
-- Index: id_idx
2018-03-25 05:44:17 +02:00
-- DROP INDEX public.id_idx;
CREATE UNIQUE INDEX id_idx
ON public.videos USING btree
(id COLLATE pg_catalog."default")
TABLESPACE pg_default;