summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-11-09 22:41:13 +0300
committerAndrew Dolgov <[email protected]>2010-11-09 22:41:13 +0300
commit490c366d39126d8abab29547e8dd983ee254e859 (patch)
treedc6faa0f67f873fb6070ad6b2271642d2f984550 /schema/ttrss_schema_mysql.sql
parent38edb1510d58b7c8b88d29539afdcecdff8edbf4 (diff)
add tag cache for user_entries (bump schema)
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index da73cedd4..527957038 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -151,6 +151,7 @@ create table ttrss_user_entries (
owner_uid integer not null,
marked bool not null default 0,
published bool not null default 0,
+ tag_cache text not null,
last_read datetime,
score int not null default 0,
note longtext,
@@ -244,7 +245,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 (71);
+insert into ttrss_version values (72);
create table ttrss_enclosures (id integer primary key auto_increment,
content_url text not null,