summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-20 11:01:22 +0100
committerAndrew Dolgov <[email protected]>2009-01-20 11:01:22 +0100
commit931dcbc137e085cf6d07a4aa7ef3ca7f77450532 (patch)
tree38e5cf5266c167dd079284364a6ecafdb64033f5 /schema/ttrss_schema_mysql.sql
parente51b9cb098592e48146d00b481abe4c6c51b8629 (diff)
feedbrowser_cache: store title; implement by-title search in feed browser
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index c07782e3f..9de6567a8 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -224,7 +224,7 @@ create table ttrss_tags (id integer primary key auto_increment,
create table ttrss_version (schema_version int not null) TYPE=InnoDB;
-insert into ttrss_version values (51);
+insert into ttrss_version values (52);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,
@@ -379,6 +379,7 @@ create table ttrss_sessions (id varchar(250) unique not null primary key,
create table ttrss_feedbrowser_cache (
feed_url text not null,
+ title text not null,
subscribers integer not null);
create table ttrss_labels2 (id integer not null primary key auto_increment,