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.
13 lines
308 B
PL/PgSQL
13 lines
308 B
PL/PgSQL
begin;
|
|
|
|
alter table ttrss_filters add column filter_param varchar(200);
|
|
|
|
update ttrss_filters set filter_param = '';
|
|
|
|
alter table ttrss_filters alter column filter_param set not null;
|
|
alter table ttrss_filters alter column filter_param set default '';
|
|
|
|
update ttrss_version set schema_version = 47;
|
|
|
|
commit;
|