Add channel sql

This commit is contained in:
Omar Roth
2018-03-24 22:44:17 -05:00
parent 253ea8113b
commit 908543dd62
3 changed files with 32 additions and 1 deletions

26
config/sql/channels.sql Normal file
View File

@ -0,0 +1,26 @@
-- Table: public.channels
-- DROP TABLE public.channels;
CREATE TABLE public.channels
(
id text COLLATE pg_catalog."default" NOT NULL,
rss text COLLATE pg_catalog."default",
updated timestamp with time zone,
author text COLLATE pg_catalog."default"
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
GRANT ALL ON TABLE public.channels TO kemal;
-- Index: channel_id_idx
-- DROP INDEX public.channel_id_idx;
CREATE UNIQUE INDEX channel_id_idx
ON public.channels USING btree
(id COLLATE pg_catalog."default")
TABLESPACE pg_default;

34
config/sql/videos.sql Normal file
View File

@ -0,0 +1,34 @@
-- Table: public.videos
-- 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,
title text COLLATE pg_catalog."default",
views bigint,
likes integer,
dislikes integer,
wilson_score double precision,
published timestamp with time zone,
description text COLLATE pg_catalog."default",
language 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
-- DROP INDEX public.id_idx;
CREATE UNIQUE INDEX id_idx
ON public.videos USING btree
(id COLLATE pg_catalog."default")
TABLESPACE pg_default;