summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-04-30 07:34:08 +0100
committerAndrew Dolgov <[email protected]>2008-04-30 07:34:08 +0100
commitafb6038e47f07f3225d783f6ae10c13ef486f89e (patch)
tree7a442ec9f564cff52767ab9a41487db3bb6855c5 /schema/ttrss_schema_mysql.sql
parent43fc671f796b1f9720544c1577a05f6fe9e4d1d2 (diff)
add ttrss_user_entries.score; bump schema
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index f2daa69fb..819ee216a 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -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,