summaryrefslogtreecommitdiff
path: root/schema
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
parentf6fed1b26bf60bf508aa186503566df0b64aac92 (diff)
update translations
Diffstat (limited to 'schema')
-rw-r--r--schema/ttrss_schema_mysql.sql3
-rw-r--r--schema/ttrss_schema_pgsql.sql3
-rw-r--r--schema/versions/mysql/55.sql7
-rw-r--r--schema/versions/pgsql/55.sql7
4 files changed, 2 insertions, 18 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,
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index 57d2e95d1..eecc1d29b 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -126,7 +126,6 @@ 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);
@@ -201,7 +200,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 (55);
+insert into ttrss_version values (54);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,
diff --git a/schema/versions/mysql/55.sql b/schema/versions/mysql/55.sql
deleted file mode 100644
index 75f55b3c3..000000000
--- a/schema/versions/mysql/55.sql
+++ /dev/null
@@ -1,7 +0,0 @@
-begin;
-
-alter table ttrss_user_entries add column note text;
-
-update ttrss_version set schema_version = 55;
-
-commit;
diff --git a/schema/versions/pgsql/55.sql b/schema/versions/pgsql/55.sql
deleted file mode 100644
index 75f55b3c3..000000000
--- a/schema/versions/pgsql/55.sql
+++ /dev/null
@@ -1,7 +0,0 @@
-begin;
-
-alter table ttrss_user_entries add column note text;
-
-update ttrss_version set schema_version = 55;
-
-commit;