From 1089b16bc2dccbfba226fbd7d98b7535203449d2 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 16 Nov 2005 08:24:43 +0100 Subject: add purge_interval in ttrss_feeds (schema updated) --- schema/ttrss_schema_pgsql.sql | 3 ++- 1 file changed, 2 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 3a20588eb..2a63243ad 100644 --- a/schema/ttrss_schema_pgsql.sql +++ b/schema/ttrss_schema_pgsql.sql @@ -7,6 +7,7 @@ create table ttrss_feeds (id serial not null primary key, feed_url varchar(250) unique not null, icon_url varchar(250) not null default '', update_interval integer not null default 0, + purge_interval integer not null default 0, last_updated timestamp default null, last_error text not null default '', site_url varchar(250) not null default ''); @@ -83,5 +84,5 @@ drop table ttrss_version; create table ttrss_version (schema_version int not null); -insert into ttrss_version values (1); +insert into ttrss_version values (2); -- cgit v1.2.3