diff options
author | Aurelien Poscia <aurelien.poscia@sonarsource.com> | 2023-08-16 09:28:33 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-08-22 20:03:04 +0000 |
commit | 5c7946ee113486391b8944b64329a694ae66db4a (patch) | |
tree | fd301e5b2399a38b5eb561ae75c4d221850e71f9 /server/sonar-db-migration/src | |
parent | 79a918e87636c7d56e71e2fc42dca6d2caca0c51 (diff) | |
download | sonarqube-5c7946ee113486391b8944b64329a694ae66db4a.tar.gz sonarqube-5c7946ee113486391b8944b64329a694ae66db4a.zip |
SONAR-19783 Adapt synchronization steps to handle default organization group
Diffstat (limited to 'server/sonar-db-migration/src')
-rw-r--r-- | server/sonar-db-migration/src/test/java/org/sonar/server/platform/db/migration/version/v102/CreateGithubOrganizationsGroupsTableTest.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/server/sonar-db-migration/src/test/java/org/sonar/server/platform/db/migration/version/v102/CreateGithubOrganizationsGroupsTableTest.java b/server/sonar-db-migration/src/test/java/org/sonar/server/platform/db/migration/version/v102/CreateGithubOrganizationsGroupsTableTest.java index dc44a594654..e4e900d43c7 100644 --- a/server/sonar-db-migration/src/test/java/org/sonar/server/platform/db/migration/version/v102/CreateGithubOrganizationsGroupsTableTest.java +++ b/server/sonar-db-migration/src/test/java/org/sonar/server/platform/db/migration/version/v102/CreateGithubOrganizationsGroupsTableTest.java @@ -1,3 +1,22 @@ +/* + * SonarQube + * Copyright (C) 2009-2023 SonarSource SA + * mailto:info AT sonarsource DOT com + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ package org.sonar.server.platform.db.migration.version.v102; import java.sql.SQLException; |