1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-02 11:19:14 +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

@@ -31,6 +31,7 @@ insert into ttrss_users (login,pwd_hash,access_level) values ('admin', 'password
create table ttrss_feed_categories(id serial not null primary key,
owner_uid integer not null references ttrss_users(id) on delete cascade,
collapsed boolean not null default false,
title varchar(200) not null);
create table ttrss_feeds (id serial not null primary key,