bump schema version

This commit is contained in:
Andrew Dolgov
2005-12-21 19:08:59 +01:00
parent 5c563acde0
commit 49756fc36c
6 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -166,7 +166,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 (2);
insert into ttrss_version values (3);
create table ttrss_prefs_types (id integer not null primary key,
type_name varchar(100) not null) TYPE=InnoDB;
+1 -1
View File
@@ -150,7 +150,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 (2);
insert into ttrss_version values (3);
create table ttrss_prefs_types (id integer not null primary key,
type_name varchar(100) not null);
+2
View File
@@ -38,4 +38,6 @@ alter table ttrss_users alter column email set default '';
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_SEARCH_TOOLBAR', 1, 'false', 'Enable search toolbar',2);
update ttrss_version set schema_version = 3;
commit;
+2
View File
@@ -38,4 +38,6 @@ alter table ttrss_users alter column email set default '';
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_SEARCH_TOOLBAR', 1, 'false', 'Enable search toolbar',2);
update ttrss_version set schema_version = 3;
commit;