summaryrefslogtreecommitdiff
path: root/sql/pgsql/schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql/pgsql/schema.sql')
-rw-r--r--sql/pgsql/schema.sql4
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/pgsql/schema.sql b/sql/pgsql/schema.sql
index 3145629fc..21e3fd83a 100644
--- a/sql/pgsql/schema.sql
+++ b/sql/pgsql/schema.sql
@@ -400,6 +400,8 @@ create table ttrss_scheduled_tasks(
task_name varchar(250) unique not null,
last_duration integer not null,
last_rc integer not null,
- last_run timestamp not null default NOW());
+ last_run timestamp not null default NOW(),
+ last_cron_expression varchar(250) not null,
+ owner_uid integer default null references ttrss_users(id) ON DELETE CASCADE);
commit;