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.
16 lines
401 B
MySQL
16 lines
401 B
MySQL
18 years ago
|
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;
|