]> git.wh0rd.org - tt-rss.git/blobdiff - schema/ttrss_schema_pgsql.sql
update schema 128 to properly set ttrss_feeds.last_updated default value to NULL
[tt-rss.git] / schema / ttrss_schema_pgsql.sql
index 9dafa693e11c409f9170fb789c0099c0cd75081b..237f1d3fbb36fb2ed3a4f48ea16cd5508b713683 100644 (file)
@@ -228,6 +228,9 @@ insert into ttrss_filter_actions (id,name,description) values (7, 'label',
 insert into ttrss_filter_actions (id,name,description) values (8, 'stop',
        'Stop / Do nothing');
 
+insert into ttrss_filter_actions (id,name,description) values (9, 'plugin',
+       'Invoke plugin');
+
 create table ttrss_filters2(id serial not null primary key,
        owner_uid integer not null references ttrss_users(id) on delete cascade,
        match_any_rule boolean not null default false,
@@ -260,7 +263,7 @@ create index ttrss_tags_post_int_id_idx on ttrss_tags(post_int_id);
 
 create table ttrss_version (schema_version int not null);
 
-insert into ttrss_version values (127);
+insert into ttrss_version values (130);
 
 create table ttrss_enclosures (id serial not null primary key,
        content_url text not null,