summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-12-27 20:27:28 +0400
committerAndrew Dolgov <[email protected]>2012-12-27 20:27:28 +0400
commitd26111f541d196944ab8bf630f2fda3ec6aae9d0 (patch)
tree74addecdd538057409bfdeda18153457468d3262 /schema
parent2a3b7f25fcc99bc53d7c0f93c4e44ce2804bcc04 (diff)
mysql: fix schema version
Diffstat (limited to 'schema')
-rw-r--r--schema/ttrss_schema_mysql.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 0b0c587b9..d4531308f 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -309,7 +309,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 (100);
+insert into ttrss_version values (101);
create table ttrss_enclosures (id integer primary key auto_increment,
content_url text not null,