schema: add cache_images feed option

This commit is contained in:
Andrew Dolgov
2007-08-26 04:34:52 +01:00
parent 236ac05ce8
commit fb67e2ba58
4 changed files with 12 additions and 0 deletions

View File

@@ -64,6 +64,7 @@ create table ttrss_feeds (id serial not null primary key,
hidden boolean not null default false,
include_in_digest boolean not null default true,
rtl_content boolean not null default false,
cache_images boolean not null default false,
auth_pass_encrypted boolean not null default false);
create index ttrss_feeds_owner_uid_index on ttrss_feeds(owner_uid);