Subscriptions: Add watched column in database for future feature

This commit is contained in:
James Taylor 2019-08-17 13:54:54 -07:00
parent d80a8b1c3f
commit 71632a23f5

View File

@ -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,