]> source.dussan.org Git - sonarqube.git/commitdiff
Fix index name on RULES_PROFILES on H2
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Wed, 2 Dec 2015 09:15:17 +0000 (10:15 +0100)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 3 Dec 2015 18:11:09 +0000 (19:11 +0100)
On H2, index name was PROFILE_UNIQUE_KEY, but on other database it's UNIQ_QPROF_KEY

sonar-db/src/main/resources/org/sonar/db/version/schema-h2.ddl

index ec38443f4929bed542ab3b88de749d471edb68a3..e3025a4053f318e17624ad2d2d8d53c3a3fef83e 100644 (file)
@@ -691,7 +691,7 @@ CREATE UNIQUE INDEX "QUALITY_GATES_UNIQUE" ON "QUALITY_GATES" ("NAME");
 
 CREATE UNIQUE INDEX "ACTIVE_RULES_UNIQUE" ON "ACTIVE_RULES" ("PROFILE_ID","RULE_ID");
 
-CREATE UNIQUE INDEX "PROFILE_UNIQUE_KEY" ON "RULES_PROFILES" ("KEE");
+CREATE UNIQUE INDEX "UNIQ_QPROF_KEY" ON "RULES_PROFILES" ("KEE");
 
 CREATE INDEX "FILE_SOURCES_PROJECT_UUID" ON "FILE_SOURCES" ("PROJECT_UUID");