summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-08-26 04:34:52 +0100
committerAndrew Dolgov <[email protected]>2007-08-26 04:34:52 +0100
commitfb67e2ba58b08f150c383664c0b6796d56254d5d (patch)
tree625aa80637097ae701c3384f662d674af58a8ed9 /schema/ttrss_schema_mysql.sql
parent236ac05ce874725d436f8fd7305ecf42b49b93ce (diff)
schema: add cache_images feed option
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 1dca03732..5db0814f2 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -71,6 +71,7 @@ create table ttrss_feeds (id integer not null auto_increment primary key,
rtl_content bool not null default false,
hidden bool not null default false,
include_in_digest boolean not null default true,
+ cache_images boolean not null default false,
auth_pass_encrypted boolean not null default false,
index(owner_uid),
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,