From 75fa1e31266b55ea502876dae9b14474bd58bf9a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 13 Dec 2008 12:57:01 +0100 Subject: schema: add new filter type (refs #225) --- schema/ttrss_schema_pgsql.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'schema/ttrss_schema_pgsql.sql') diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql index 5b40fab33..2efcaf7f0 100644 --- a/schema/ttrss_schema_pgsql.sql +++ b/schema/ttrss_schema_pgsql.sql @@ -141,6 +141,8 @@ insert into ttrss_filter_types (id,name,description) values (3, 'both', 'Title or Content'); insert into ttrss_filter_types (id,name,description) values (4, 'link', 'Link'); +insert into ttrss_filter_types (id,name,description) values (5, 'date', + 'Article Date'); create table ttrss_filter_actions (id integer not null primary key, name varchar(120) unique not null, @@ -196,7 +198,7 @@ create index ttrss_tags_owner_uid_index on ttrss_tags(owner_uid); create table ttrss_version (schema_version int not null); -insert into ttrss_version values (45); +insert into ttrss_version values (46); create table ttrss_enclosures (id serial not null primary key, content_url text not null, -- cgit v1.2.3