1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 11:05:55 +00:00

implement label cache; misc fixes (bump schema)

This commit is contained in:
Andrew Dolgov
2010-11-10 18:50:51 +03:00
parent 23d064cc81
commit 905ff52a36
8 changed files with 109 additions and 39 deletions

View File

@@ -152,6 +152,7 @@ create table ttrss_user_entries (
marked bool not null default 0,
published bool not null default 0,
tag_cache text not null,
label_cache text not null,
last_read datetime,
score int not null default 0,
note longtext,
@@ -245,7 +246,7 @@ create table ttrss_tags (id integer primary key auto_increment,
create table ttrss_version (schema_version int not null) TYPE=InnoDB DEFAULT CHARSET=UTF8;
insert into ttrss_version values (73);
insert into ttrss_version values (74);
create table ttrss_enclosures (id integer primary key auto_increment,
content_url text not null,

View File

@@ -138,6 +138,7 @@ create table ttrss_user_entries (
marked boolean not null default false,
published boolean not null default false,
tag_cache text not null,
label_cache text not null,
last_read timestamp,
score int not null default 0,
note text,
@@ -217,7 +218,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 (73);
insert into ttrss_version values (74);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,