summaryrefslogtreecommitdiff
path: root/sql/pgsql/schema.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2025-05-04 17:40:13 +0000
committerAndrew Dolgov <fox@fakecake.org>2025-05-04 17:40:13 +0000
commit6d11acc713d4f95375b06a6ee94d72d5bd0218cf (patch)
tree71619a17b544390cc675fbae6fbcdfbae5006e18 /sql/pgsql/schema.sql
parentd4faf2d3690592e64bd40c2d15d69897a63600a0 (diff)
parent4cc40ddaa4552b2be9b696dc7b74e5c5c64fa372 (diff)
Merge branch 'plugin-cringe' into 'master'
expose scheduled tasks to plugins, switch cache_starred_images plugin to use... See merge request tt-rss/tt-rss!129
Diffstat (limited to 'sql/pgsql/schema.sql')
-rw-r--r--sql/pgsql/schema.sql4
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/pgsql/schema.sql b/sql/pgsql/schema.sql
index 3145629fc..21e3fd83a 100644
--- a/sql/pgsql/schema.sql
+++ b/sql/pgsql/schema.sql
@@ -400,6 +400,8 @@ create table ttrss_scheduled_tasks(
task_name varchar(250) unique not null,
last_duration integer not null,
last_rc integer not null,
- last_run timestamp not null default NOW());
+ last_run timestamp not null default NOW(),
+ last_cron_expression varchar(250) not null,
+ owner_uid integer default null references ttrss_users(id) ON DELETE CASCADE);
commit;