summaryrefslogtreecommitdiffstats
path: root/config/sql
diff options
context:
space:
mode:
authorOmar Roth <omarroth@hotmail.com>2019-02-09 10:18:24 -0600
committerOmar Roth <omarroth@hotmail.com>2019-02-09 10:49:48 -0600
commit30e6d291066f489a27b558f536a8ee4f83d79f73 (patch)
tree901969cd47393dbbee906ef536439b38491ef4ce /config/sql
parent7a9ef0d664c9d8d4eec879fadeb823568877bf28 (diff)
downloadinvidious-30e6d291066f489a27b558f536a8ee4f83d79f73.tar.gz
invidious-30e6d291066f489a27b558f536a8ee4f83d79f73.tar.bz2
invidious-30e6d291066f489a27b558f536a8ee4f83d79f73.zip
Add 'deleted' to channel info
Diffstat (limited to 'config/sql')
-rw-r--r--config/sql/channels.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/sql/channels.sql b/config/sql/channels.sql
index c4259c12..cecd04ed 100644
--- a/config/sql/channels.sql
+++ b/config/sql/channels.sql
@@ -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)
);