diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-02 10:23:30 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-02 10:23:30 +0300 |
| commit | a268f52de695fffb29769960332bfb34fe3ac7b5 (patch) | |
| tree | 76aea12e8a45115da93dc7a53ee8b71038aeb4d9 /sql/pgsql/migrations/150.sql | |
| parent | 6a40940ad6c6facea6c8e9d0dc1896885168c442 (diff) | |
record task duration in seconds
Diffstat (limited to 'sql/pgsql/migrations/150.sql')
| -rw-r--r-- | sql/pgsql/migrations/150.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/pgsql/migrations/150.sql b/sql/pgsql/migrations/150.sql index 55d9609e9..c0aae3bdf 100644 --- a/sql/pgsql/migrations/150.sql +++ b/sql/pgsql/migrations/150.sql @@ -1,5 +1,6 @@ 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()); |