1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-23 02:47:10 +00:00

schema: add collapsed field for ttrss_user_categories

This commit is contained in:
Andrew Dolgov
2005-12-13 09:30:52 +01:00
parent 06300301c0
commit 28bcadff2b
4 changed files with 16 additions and 0 deletions

View File

@@ -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;