summaryrefslogtreecommitdiff
path: root/schema/versions/pgsql/12.sql
blob: 6de90f1abcbbff216b680e98a817d9c8bb5a2963 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
begin;

alter table ttrss_filters add column action_param varchar(200);

update ttrss_filters set action_param = '';

alter table ttrss_filters alter column action_param set not null;
alter table ttrss_filters alter column action_param set default '';

insert into ttrss_filter_actions (id,name,description) values (4, 'tag', 
		'Assign tags');

update ttrss_version set schema_version = 12;

commit;