From 0c630ef32636378bbf8c25211da256b4d7a29069 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 16 Jan 2009 10:33:25 +0100 Subject: schema: add ttrss_feedbrowser_cache (bump schema) --- schema/ttrss_schema_mysql.sql | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'schema/ttrss_schema_mysql.sql') diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index 00e52479a..977e56e8d 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -1,6 +1,7 @@ -- SET NAMES utf8; -- SET CHARACTER SET utf8; +drop table if exists ttrss_feedbrowser_cache; drop table if exists ttrss_version; drop table if exists ttrss_labels; drop table if exists ttrss_filters; @@ -375,4 +376,8 @@ create table ttrss_sessions (id varchar(250) unique not null primary key, index (id), index (expire)) TYPE=InnoDB; +create table ttrss_feedbrowser_cache ( + feed_url text not null, + subscribers integer not null); + commit; -- cgit v1.2.3