You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
174 B
MySQL
7 lines
174 B
MySQL
19 years ago
|
begin;
|
||
|
|
||
|
alter table ttrss_feeds add column parent_feed integer;
|
||
|
alter table ttrss_feeds add foreign key (parent_feed) references ttrss_feeds(id) on delete set null;
|
||
|
|
||
|
commit;
|