summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_pgsql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-11-10 18:50:51 +0300
committerAndrew Dolgov <[email protected]>2010-11-10 19:01:14 +0300
commit905ff52a362b6afc28a2c3ed1cbc9b90d63253ba (patch)
tree2bcf77d8c7d7f4235fef3bd9aa5171c0c5e3d549 /schema/ttrss_schema_pgsql.sql
parent23d064cc81c2ece13781662ccf6dd99106587f67 (diff)
implement label cache; misc fixes (bump schema)
Diffstat (limited to 'schema/ttrss_schema_pgsql.sql')
-rw-r--r--schema/ttrss_schema_pgsql.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index fc1265005..152af5dd3 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -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,