record task duration in seconds

This commit is contained in:
Andrew Dolgov
2025-05-02 10:23:30 +03:00
parent 6a40940ad6
commit a268f52de6
3 changed files with 7 additions and 1 deletions

View File

@@ -398,6 +398,7 @@ create table ttrss_error_log(
create table ttrss_scheduled_tasks(
id serial not null primary key,
task_name varchar(250) unique not null,
last_duration integer not null,
last_rc integer not null,
last_run timestamp not null default NOW());