1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-26 14:27:11 +00:00

feedbrowser_cache: store title; implement by-title search in feed browser

This commit is contained in:
Andrew Dolgov
2009-01-20 11:01:22 +01:00
parent e51b9cb098
commit 931dcbc137
7 changed files with 38 additions and 12 deletions

View File

@@ -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,