summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_pgsql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-11-23 13:22:34 +0400
committerAndrew Dolgov <[email protected]>2012-11-23 13:22:34 +0400
commit87764a50cf08f33008a0f83d91b4d807643db67c (patch)
tree3c8c5c83cc49b6c64b63b817b7a83dcbe75ccde2 /schema/ttrss_schema_pgsql.sql
parent7b28a986978e25fbc5ecdb468a48efbf158f641d (diff)
implement ttrss_feeds.cache_content
Diffstat (limited to 'schema/ttrss_schema_pgsql.sql')
-rw-r--r--schema/ttrss_schema_pgsql.sql4
1 files changed, 3 insertions, 1 deletions
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index a8a769315..432ebf88d 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -78,6 +78,7 @@ create table ttrss_feeds (id serial not null primary key,
include_in_digest boolean not null default true,
rtl_content boolean not null default false,
cache_images boolean not null default false,
+ cache_content boolean not null default false,
last_viewed timestamp default null,
last_update_started timestamp default null,
update_method integer not null default 0,
@@ -130,6 +131,7 @@ create table ttrss_entries (id serial not null primary key,
updated timestamp not null,
content text not null,
content_hash varchar(250) not null,
+ cached_content text,
no_orig_date boolean not null default false,
date_entered timestamp not null,
date_updated timestamp not null,
@@ -254,7 +256,7 @@ create index ttrss_tags_post_int_id_idx on ttrss_tags(post_int_id);
create table ttrss_version (schema_version int not null);
-insert into ttrss_version values (98);
+insert into ttrss_version values (99);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,