tt-rss/schema/upgrade-1.2.4-1.2.6-pgsql.sql

16 lines
401 B
MySQL
Raw Normal View History

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 '';
2006-12-08 07:34:59 +01:00
insert into ttrss_filter_actions (id,name,description) values (4, 'tag',
2006-12-08 07:36:59 +01:00
'Assign tags');
2006-12-08 07:34:59 +01:00
update ttrss_version set schema_version = 12;
commit;