mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-08-06 14:17:27 +02:00
7 lines
215 B
SQL
7 lines
215 B
SQL
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());
|