split housekeeping jobs to separate scheduled tasks on longer cooldown intervals, add table to record task execution timestamps, bump schema

This commit is contained in:
Andrew Dolgov
2025-05-02 10:17:13 +03:00
parent f22e32a26b
commit 6a40940ad6
5 changed files with 166 additions and 37 deletions

View File

@@ -0,0 +1,5 @@
create table ttrss_scheduled_tasks(
id serial not null primary key,
task_name varchar(250) unique not null,
last_rc integer not null,
last_run timestamp not null default NOW());