Add 'deleted' to channel info

This commit is contained in:
Omar Roth
2019-02-09 10:18:24 -06:00
parent 7a9ef0d664
commit 30e6d29106
4 changed files with 11 additions and 2 deletions

View File

@ -7,6 +7,7 @@ CREATE TABLE public.channels
id text NOT NULL,
author text,
updated timestamp with time zone,
deleted boolean,
CONSTRAINT channels_id_key UNIQUE (id)
);