1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-03 17:27:12 +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

@@ -200,7 +200,7 @@ create index ttrss_tags_owner_uid_index on ttrss_tags(owner_uid);
create table ttrss_version (schema_version int not null);
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,
@@ -348,6 +348,7 @@ create function SUBSTRING_FOR_DATE(timestamp, int, int) RETURNS text AS 'SELECT
create table ttrss_feedbrowser_cache (
feed_url text not null primary key,
title text not null,
subscribers integer not null);
create table ttrss_labels2 (id serial not null primary key,