mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-08-06 14:17:27 +02:00
7 lines
346 B
SQL
7 lines
346 B
SQL
alter table ttrss_scheduled_tasks add column owner_uid integer default null references ttrss_users(id) ON DELETE CASCADE;
|
|
alter table ttrss_scheduled_tasks add column last_cron_expression varchar(250);
|
|
|
|
update ttrss_scheduled_tasks set last_cron_expression = '';
|
|
|
|
alter table ttrss_scheduled_tasks alter column last_cron_expression set not null;
|