From: Andrew Dolgov Date: Mon, 14 Jan 2008 05:49:00 +0000 (+0100) Subject: fix schema version X-Git-Tag: 1.2.19~8 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=f65b8485c6ec27fb9082b46c18132317267f789d;p=tt-rss.git fix schema version --- diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index 18b159ff..21f4bebb 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 bf738aa9..bb30e85e 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,