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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user