]> source.dussan.org Git - sonarqube.git/blob
c2815a97bcf34543af2822f03c3a8cb112f9542e
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2017 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 package org.sonar.server.platform.db.migration.version.v63;
21
22 import java.util.stream.Stream;
23 import org.sonar.server.platform.db.migration.step.MigrationStepRegistry;
24 import org.sonar.server.platform.db.migration.version.DbVersion;
25
26 public class DbVersion63 implements DbVersion {
27   @Override
28   public Stream<Object> getSupportComponents() {
29     return Stream.of(DefaultOrganizationUuidImpl.class);
30   }
31
32   @Override
33   public void addSteps(MigrationStepRegistry registry) {
34     registry
35       .add(1500, "Add Events.UUID", AddUuidToEvents.class)
36       .add(1501, "Populate Events.UUID", PopulateUuidColumnOfEvents.class)
37       .add(1502, "Make Events.UUID not nullable", MakeUuidNotNullOnEvents.class)
38       .add(1503, "Add PROJECTS.ORGANIZATION_UUID", AddOrganizationUuidToProjects.class)
39       .add(1504, "Populate PROJECTS.ORGANIZATION_UUID", PopulateOrganizationUuidToProjects.class)
40       .add(1505, "Make PROJECTS.ORGANIZATION_UUID not nullable", MakeOrganizationUuidOfProjectsNotNullable.class)
41       .add(1506, "Add index on PROJECTS.ORGANIZATION_UUID", AddIndexOnOrganizationUuidOfProjects.class)
42       .add(1507, "Drop table RESOURCE_INDEX", DropTableResourceIndex.class)
43       .add(1508, "Add columns ORGANIZATIONS.DEFAULT_PERM_TEMPLATE_*", AddDefaultPermTemplateColumnsToOrganizations.class)
44       .add(1509, "Populate columns ORGANIZATIONS.DEFAULT_PERM_TEMPLATE_*", PopulateDefaultPermTemplateColumnsOfOrganizations.class)
45       .add(1510, "Add ORGANIZATIONS.GUARDED", AddColumnGuardedToOrganizations.class)
46       .add(1511, "Populate ORGANIZATIONS.GUARDED", PopulateColumnGuardedOfOrganizations.class)
47       .add(1512, "Make ORGANIZATIONS.GUARDED not nullable", MakeColumnGuardedOfOrganizationsNotNullable.class)
48       .add(1513, "Make default organization guarded", MakeDefaultOrganizationGuarded.class)
49       .add(1514, "Delete some entries in PROPERTIES", DeleteUselessProperties.class)
50       .add(1515, "Unset user root flags", UnsetUserRootFlags.class)
51       .add(1516, "Add ORGANIZATIONS.USER_ID", AddUserIdToOrganizations.class)
52       .add(1517, "Delete PROJECT_MEASURES rows having no value", DeleteMeasuresHavingNoValue.class)
53     ;
54   }
55 }