summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-03-21 22:58:32 +0300
committerAndrew Dolgov <[email protected]>2009-03-21 22:58:32 +0300
commit2b38f79c86ad9199f39fa8efac1c0e89c6f3a465 (patch)
tree3297382269d09a3fbba1ad071c789bdc9708bdad /schema/ttrss_schema_mysql.sql
parentf6fed1b26bf60bf508aa186503566df0b64aac92 (diff)
update translations
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql3
1 files changed, 1 insertions, 2 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index ac057fd5d..65e4ffb45 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -138,7 +138,6 @@ create table ttrss_user_entries (
published bool not null default 0,
last_read datetime,
score int not null default 0,
- note text,
unread bool not null default 1,
index (ref_id),
foreign key (ref_id) references ttrss_entries(id) ON DELETE CASCADE,
@@ -225,7 +224,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 (55);
+insert into ttrss_version values (54);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,