summaryrefslogtreecommitdiffstats
path: root/config/sql
diff options
context:
space:
mode:
authorOmar Roth <omarroth@protonmail.com>2019-06-01 10:19:18 -0500
committerOmar Roth <omarroth@protonmail.com>2019-06-01 10:19:18 -0500
commit18d66dddedb4c6c14975a0ab47377258fea59e2e (patch)
tree85a9e7928ae8c08e1daa9bbf432132f3a4b6ed73 /config/sql
parent701b5ea56134f2c8d8e8f54036b9f6467095b47b (diff)
downloadinvidious-18d66dddedb4c6c14975a0ab47377258fea59e2e.tar.gz
invidious-18d66dddedb4c6c14975a0ab47377258fea59e2e.tar.bz2
invidious-18d66dddedb4c6c14975a0ab47377258fea59e2e.zip
Add 'needs_update' column for scheduling feed refresh
Diffstat (limited to 'config/sql')
-rw-r--r--config/sql/users.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/sql/users.sql b/config/sql/users.sql
index 536508a4..0f2cdba2 100644
--- a/config/sql/users.sql
+++ b/config/sql/users.sql
@@ -12,6 +12,7 @@ CREATE TABLE public.users
password text,
token text,
watched text[],
+ feed_needs_update boolean,
CONSTRAINT users_email_key UNIQUE (email)
);