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.
15 lines
464 B
PL/PgSQL
15 lines
464 B
PL/PgSQL
begin;
|
|
|
|
alter table ttrss_filters add column cat_filter bool;
|
|
update ttrss_filters set cat_filter = false;
|
|
alter table ttrss_filters change cat_filter cat_filter bool not null;
|
|
alter table ttrss_filters alter column cat_filter set default false;
|
|
|
|
alter table ttrss_filters add column cat_id integer;
|
|
|
|
alter table ttrss_filters add FOREIGN KEY (cat_id) REFERENCES ttrss_feed_categories(id) ON DELETE CASCADE;
|
|
|
|
update ttrss_version set schema_version = 87;
|
|
|
|
commit;
|