summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-30 04:05:01 +0100
committerAndrew Dolgov <[email protected]>2005-12-30 04:05:01 +0100
commit5b35b4de9bb6aea6e61297bad1e4b89c0b037fcc (patch)
tree4fe88684c1ed493f222d93154d1af055c77ac61e /schema/ttrss_schema_mysql.sql
parent48fa05ad370a0df8062303b4ea41aabe3db74de0 (diff)
ttrss_feeds: add private column to hide from browser
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 7d7f7151e..0fdf3d5bc 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -55,6 +55,7 @@ create table ttrss_feeds (id integer not null auto_increment primary key,
auth_login varchar(250) not null default '',
auth_pass varchar(250) not null default '',
parent_feed integer default null,
+ private bool not null default false,
index(owner_uid),
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
index(cat_id),