1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 05:15:55 +00:00

schema: fix version

This commit is contained in:
Andrew Dolgov
2007-04-20 03:59:27 +01:00
parent 043d82f2d0
commit e85610c710
2 changed files with 2 additions and 2 deletions

View File

@@ -189,7 +189,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 (15);
insert into ttrss_version values (16);
create table ttrss_prefs_types (id integer not null primary key,
type_name varchar(100) not null) TYPE=InnoDB;

View File

@@ -173,7 +173,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 (15);
insert into ttrss_version values (16);
create table ttrss_prefs_types (id integer not null primary key,
type_name varchar(100) not null);