mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 19:15:56 +00:00
schema: set cat_id in ttrss_feeds to null when category is deleted
This commit is contained in:
@@ -52,7 +52,7 @@ create table ttrss_feed_categories(id serial not null primary key,
|
||||
create table ttrss_feeds (id serial not null primary key,
|
||||
owner_uid integer not null references ttrss_users(id) on delete cascade,
|
||||
title varchar(200) not null,
|
||||
cat_id integer references ttrss_feed_categories(id) default null,
|
||||
cat_id integer default null references ttrss_feed_categories(id) on delete set null,
|
||||
feed_url varchar(250) not null,
|
||||
icon_url varchar(250) not null default '',
|
||||
update_interval integer not null default 0,
|
||||
|
||||
Reference in New Issue
Block a user