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;