summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-01-14 06:49:00 +0100
committerAndrew Dolgov <[email protected]>2008-01-14 06:49:00 +0100
commitf65b8485c6ec27fb9082b46c18132317267f789d (patch)
tree5374aaf8587dd202184b5564ed8a2a944e889394 /schema
parentf6d40ed212f2e767b44aa916ea957d86a4aeba4d (diff)
fix schema version
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 18b159ff1..21f4bebbb 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -203,7 +203,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 (26);
+insert into ttrss_version values (27);
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 bf738aa91..bb30e85ee 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -182,7 +182,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 (26);
+insert into ttrss_version values (27);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,