Remove html from DB

This commit is contained in:
Omar Roth
2018-02-26 18:58:45 -06:00
parent 13ef4440d0
commit 7828cd9767
4 changed files with 13 additions and 16 deletions

View File

@@ -4,7 +4,6 @@ CREATE TABLE public.videos
(
id text COLLATE pg_catalog."default" NOT NULL,
info text COLLATE pg_catalog."default",
html text COLLATE pg_catalog."default",
updated timestamp with time zone,
title text COLLATE pg_catalog."default",
views bigint,
@@ -12,6 +11,7 @@ CREATE TABLE public.videos
dislikes integer,
wilson_score double precision,
published timestamp with time zone,
description text COLLATE pg_catalog."default",
CONSTRAINT videos_pkey PRIMARY KEY (id)
)
WITH (