1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-05 13:20:55 +02:00
ttrss/schema/upgrade-1.2.4-1.2.6-mysql.sql

10 lines
308 B
MySQL
Raw Normal View History

alter table ttrss_filters add column action_param varchar(200);
update ttrss_filters set action_param = '';
alter table ttrss_filters change action_param action_param varchar(200) not null;
alter table ttrss_filters alter column action_param set default '';
update ttrss_version set schema_version = 12;