mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 05:15:55 +00:00
update translations
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
begin;
|
||||
|
||||
alter table ttrss_user_entries add column note text;
|
||||
|
||||
update ttrss_version set schema_version = 55;
|
||||
|
||||
commit;
|
||||
@@ -1,7 +0,0 @@
|
||||
begin;
|
||||
|
||||
alter table ttrss_user_entries add column note text;
|
||||
|
||||
update ttrss_version set schema_version = 55;
|
||||
|
||||
commit;
|
||||
Reference in New Issue
Block a user