diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2010-11-10 18:50:51 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2010-11-10 19:01:14 +0300 |
| commit | 905ff52a362b6afc28a2c3ed1cbc9b90d63253ba (patch) | |
| tree | 2bcf77d8c7d7f4235fef3bd9aa5171c0c5e3d549 /schema/ttrss_schema_mysql.sql | |
| parent | 23d064cc81c2ece13781662ccf6dd99106587f67 (diff) | |
implement label cache; misc fixes (bump schema)
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
| -rw-r--r-- | schema/ttrss_schema_mysql.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index e34082380..adf158c6f 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -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, |