From 71632a23f51025a17b3edf19979b2b40d46a2631 Mon Sep 17 00:00:00 2001 From: James Taylor Date: Sat, 17 Aug 2019 13:54:54 -0700 Subject: Subscriptions: Add watched column in database for future feature --- youtube/subscriptions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/youtube/subscriptions.py b/youtube/subscriptions.py index 93767b7..5f17ee6 100644 --- a/youtube/subscriptions.py +++ b/youtube/subscriptions.py @@ -51,7 +51,8 @@ def open_database(): duration text, time_published integer NOT NULL, is_time_published_exact integer DEFAULT 0, - description text + description text, + watched integer default 0 )''') cursor.execute('''CREATE TABLE IF NOT EXISTS tag_associations ( id integer PRIMARY KEY, -- cgit v1.2.3