summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-13 09:30:52 +0100
committerAndrew Dolgov <[email protected]>2005-12-13 09:30:52 +0100
commit28bcadff2b748ac06d05be1a59af4e320d924bf6 (patch)
tree03e72a117c86ba808e4934514998f918e7700794 /schema/ttrss_schema_mysql.sql
parent06300301c043378e18d27e2f43b0bdb0d32ca9a4 (diff)
schema: add collapsed field for ttrss_user_categories
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 ba97aac3c..142f6647b 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -34,6 +34,7 @@ insert into ttrss_users (login,pwd_hash,access_level) values ('admin', 'password
create table ttrss_feed_categories(id integer not null primary key auto_increment,
owner_uid integer not null,
title varchar(200) not null,
+ collapsed bool not null default false,
index(owner_uid),
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB;