mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 23:05:55 +00:00
add ttrss_user_entries.score; bump schema
This commit is contained in:
@@ -115,6 +115,7 @@ create table ttrss_user_entries (
|
||||
marked bool not null default 0,
|
||||
published bool not null default 0,
|
||||
last_read datetime,
|
||||
score int not null default 0,
|
||||
unread bool not null default 1,
|
||||
index (ref_id),
|
||||
foreign key (ref_id) references ttrss_entries(id) ON DELETE CASCADE,
|
||||
@@ -205,7 +206,7 @@ create table ttrss_tags (id integer primary key auto_increment,
|
||||
|
||||
create table ttrss_version (schema_version int not null) TYPE=InnoDB;
|
||||
|
||||
insert into ttrss_version values (35);
|
||||
insert into ttrss_version values (36);
|
||||
|
||||
create table ttrss_enclosures (id serial not null primary key,
|
||||
content_url text not null,
|
||||
|
||||
Reference in New Issue
Block a user