]> git.wh0rd.org - tt-rss.git/blobdiff - schema/ttrss_schema_pgsql.sql
per-feed update intervals
[tt-rss.git] / schema / ttrss_schema_pgsql.sql
index 77e88a158c4c2d061d6d549fe7f8e09ec51915e3..085bcc675829296274f77423bf52e5a55408cac4 100644 (file)
@@ -6,6 +6,7 @@ create table ttrss_feeds (id serial not null primary key,
        title varchar(200) not null unique, 
        feed_url varchar(250) unique not null, 
        icon_url varchar(250) not null default '',
+       update_interval integer not null default 0,
        last_updated timestamp default null);
 
 insert into ttrss_feeds (title,feed_url) values ('Footnotes', 'http://gnomedesktop.org/node/feed');