Skip to content

Commit

Permalink
Fixed issue #9622: DB updater kicks in after installation
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed May 7, 2015
1 parent f714ce1 commit a1a100e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion application/config/version.php
Expand Up @@ -12,7 +12,7 @@
*
*/

$config['versionnumber'] = "2.06a2";
$config['versionnumber'] = "2.06RC1";
$config['dbversionnumber'] = 180;
$config['buildnumber'] = '';
$config['updatable'] = true;
Expand Down
2 changes: 1 addition & 1 deletion installer/sql/create-mssql.sql
Expand Up @@ -566,4 +566,4 @@ create index [parent_qid_idx] on [prefix_questions] ([parent_qid]);
--
-- Version Info
--
INSERT INTO [prefix_settings_global] VALUES ('DBVersion', '179');
INSERT INTO [prefix_settings_global] VALUES ('DBVersion', '180');
2 changes: 1 addition & 1 deletion installer/sql/create-mysql.sql
Expand Up @@ -575,4 +575,4 @@ CREATE INDEX `parent_qid_idx` ON `prefix_questions` (`parent_qid`);
--
-- Version Info
--
INSERT INTO `prefix_settings_global` VALUES ('DBVersion', '179');
INSERT INTO `prefix_settings_global` VALUES ('DBVersion', '180');
2 changes: 1 addition & 1 deletion installer/sql/create-pgsql.sql
Expand Up @@ -576,4 +576,4 @@ create unique index permissions_idx2 ON prefix_permissions (entity_id, entity, u
--
-- Version Info
--
INSERT INTO prefix_settings_global VALUES ('DBVersion', '179');
INSERT INTO prefix_settings_global VALUES ('DBVersion', '180');

0 comments on commit a1a100e

Please sign in to comment.