1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-01 10:09:15 +00:00

schema: add published column

This commit is contained in:
Andrew Dolgov
2007-08-09 11:09:22 +01:00
parent bc0ed820d1
commit ffba8297ea
4 changed files with 12 additions and 0 deletions

View File

@@ -97,6 +97,7 @@ create table ttrss_user_entries (
feed_id int references ttrss_feeds(id) ON DELETE CASCADE not null,
owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
marked boolean not null default false,
published boolean not null default false,
last_read timestamp,
unread boolean not null default true);