summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-16 10:33:25 +0100
committerAndrew Dolgov <[email protected]>2009-01-16 10:33:25 +0100
commit0c630ef32636378bbf8c25211da256b4d7a29069 (patch)
treec588d17c30266adf9fda54c9e1a88edb990c5a1c /schema/ttrss_schema_mysql.sql
parentdf00fb805181b8ac88d28f37ee3665f33ca85e3e (diff)
schema: add ttrss_feedbrowser_cache (bump schema)
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql5
1 files changed, 5 insertions, 0 deletions
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;