Skip to content

Commit

Permalink
SONAR-20486 Fix 10.2 migration on MSSQL, when auto-provisioning is ON
Browse files Browse the repository at this point in the history
  • Loading branch information
aurelien-poscia-sonarsource authored and sonartech committed Sep 18, 2023
1 parent 5659b31 commit 6d4d7e9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ public class AddUserConsentRequiredIfGithubAutoProvisioningEnabled extends DataC
static final String PROP_KEY = "sonar.auth.github.userConsentForPermissionProvisioningRequired";

private static final String INSERT_QUERY = """
INSERT INTO PROPERTIES (UUID, PROP_KEY, IS_EMPTY, CREATED_AT)
VALUES (?, ?, ?, ?)
insert into properties (uuid, prop_key, is_empty, created_at)
values (?, ?, ?, ?)
""";

private final System2 system2;
Expand Down

0 comments on commit 6d4d7e9

Please sign in to comment.