1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-10 22:39:14 +00:00

add support for adding syndicated notes to published articles

This commit is contained in:
Andrew Dolgov
2009-03-06 13:40:59 +03:00
parent 5859b5383d
commit 5161564f3d
10 changed files with 193 additions and 22 deletions

View File

@@ -126,6 +126,7 @@ create table ttrss_user_entries (
published boolean not null default false,
last_read timestamp,
score int not null default 0,
note text,
unread boolean not null default true);
-- create index ttrss_user_entries_feed_id_index on ttrss_user_entries(feed_id);
@@ -200,7 +201,7 @@ create index ttrss_tags_owner_uid_index on ttrss_tags(owner_uid);
create table ttrss_version (schema_version int not null);
insert into ttrss_version values (54);
insert into ttrss_version values (55);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,