summaryrefslogtreecommitdiff
path: root/sql/pgsql/migrations/150.sql
blob: 19f3aaa3a3a89b3ebe9120310b05d8930765e526 (plain)
1
2
3
4
5
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());