summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-04-10 13:20:16 +0300
committerAndrew Dolgov <[email protected]>2019-04-10 13:20:16 +0300
commit9e200f2cf0c0e12ffa61ce1aff39088ecbf866e0 (patch)
treed99e01963bbca4b2dac8dab4043103d21bc0bcd8 /schema
parentd32e191ad7e844cac1943f5352f0c4828eb71525 (diff)
schema: update version to 138
Diffstat (limited to 'schema')
-rw-r--r--schema/ttrss_schema_mysql.sql2
-rw-r--r--schema/ttrss_schema_pgsql.sql2
2 files changed, 2 insertions, 2 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 5d8f34645..fcff9c9bb 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -287,7 +287,7 @@ create table ttrss_tags (id integer primary key auto_increment,
create table ttrss_version (schema_version int not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
-insert into ttrss_version values (137);
+insert into ttrss_version values (138);
create table ttrss_enclosures (id integer primary key auto_increment,
content_url text not null,
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index a36150c4c..ac1b38315 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -269,7 +269,7 @@ create index ttrss_tags_post_int_id_idx on ttrss_tags(post_int_id);
create table ttrss_version (schema_version int not null);
-insert into ttrss_version values (137);
+insert into ttrss_version values (138);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,