Skip to content

Commit

Permalink
Fixed issue #15400: RC4 cannot be installed (locally)
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikvitt committed Oct 14, 2019
1 parent 81c675f commit 358a92f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions installer/create-database.php
Original file line number Diff line number Diff line change
Expand Up @@ -967,11 +967,9 @@ function createDatabase($oDB){
$oDB->createCommand()->createIndex('{{idx1_question_themes}}', '{{question_themes}}', 'name', false);

$baseQuestionThemeEntries = LsDefaultDataSets::getBaseQuestionThemeEntries();
switchMSSQLIdentityInsert('question_themes', true);
foreach ($baseQuestionThemeEntries as $baseQuestionThemeEntry) {
$oDB->createCommand()->insert("{{question_themes}}", $baseQuestionThemeEntry);
}
switchMSSQLIdentityInsert('question_themes', false);

//tutorials
$oDB->createCommand()->createTable(
Expand Down

1 comment on commit 358a92f

@olleharstedt
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this tested on MSSQL too?

Please sign in to comment.