summaryrefslogtreecommitdiff
path: root/schema/upgrade-1.2.4-1.2.6-pgsql.sql
blob: 71b4634dd42191d37417ed377acdb70407f69ddc (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 tag');

update ttrss_version set schema_version = 12;

commit;