summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-08-13 12:43:48 +0100
committerAndrew Dolgov <[email protected]>2006-08-13 12:43:48 +0100
commit7da377ca8b4668d3e21339531b1ba5d8518b9740 (patch)
treec2d4aa8da4252650f3e8630d7677e3aa9b419d25 /schema/ttrss_schema_mysql.sql
parentf2c43604ecfd7a34d9f92d894942e6216fa82684 (diff)
add hidden field to ttrss_feeds
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 360d6257b..7cc4cac03 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -62,6 +62,7 @@ create table ttrss_feeds (id integer not null auto_increment primary key,
parent_feed integer default null,
private bool not null default false,
rtl_content bool not null default false,
+ hidden bool not null default false,
index(owner_uid),
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
index(cat_id),