summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-08-22 08:29:18 +0100
committerAndrew Dolgov <[email protected]>2006-08-22 08:29:18 +0100
commit3dd9183cd603df99ae8d2bf5cb536b24bc030e20 (patch)
tree7ebf5625fad3f97676a2e0fb44232bd5199b4fcf /schema/ttrss_schema_mysql.sql
parent5f2cd401f983f46d26d967a677398734a4346c5f (diff)
schema: ttrss_feeds, new field - include_in_digest
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 9cd1dfba1..961abe811 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -65,6 +65,7 @@ create table ttrss_feeds (id integer not null auto_increment primary key,
private bool not null default false,
rtl_content bool not null default false,
hidden bool not null default false,
+ include_in_digest boolean not null default true,
index(owner_uid),
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
index(cat_id),