]> source.dussan.org Git - sonarqube.git/blob
ff1ef92b923fdc49cf45d9b1003cbe8ef4c9b9d0
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2022 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.v95;
21
22 import org.sonar.server.platform.db.migration.step.MigrationStepRegistry;
23 import org.sonar.server.platform.db.migration.version.DbVersion;
24
25 public class DbVersion95 implements DbVersion {
26   static final String DEFAULT_DESCRIPTION_KEY = "default";
27
28   @Override
29   public void addSteps(MigrationStepRegistry registry) {
30     registry
31       .add(6401, "Add column 'project_key' to 'user_tokens'", AddProjectKeyColumnToUserTokens.class)
32       .add(6402, "Add column 'type' to 'user_tokens'", AddTypeColumnToUserTokens.class)
33       .add(6403, "Upsert value of type in 'user_tokens'", UpsertUserTokensTypeValue.class)
34       .add(6404, "Make column 'type' in 'user_tokens' not nullable", MakeTypeColumnNotNullableOnUserTokens.class)
35       .add(6405, "Create table RULE_DESC_SECTIONS", CreateRuleDescSectionsTable.class)
36       .add(6406, "Insert description from RULES into RULE_DESC_SECTIONS", InsertRuleDescriptionIntoRuleDescSections.class)
37       .add(6407, "Create index for RULE_DESC_SECTIONS", CreateIndexForRuleDescSections.class)
38       .add(6408, "Drop column DESCRIPTIONS from RULES table", DropRuleDescriptionColumn.class)
39       .add(6409, "Drop column CREATED_AT from RULES_METADATA table", DropRuleMetadataCreatedAtColumn.class)
40       .add(6410, "Drop column UPDATED_AT from RULES_METADATA table", DropRuleMetadataUpdatedAtColumn.class)
41       .add(6411, "Overwrite plugin file hash to force reloading rules", OverwritePluginFileHash.class)
42
43       .add(6412, "Add rules_metadata columns to rules table", AddRulesMetadataColumnsToRulesTable.class)
44       .add(6413, "Populate rules metadata in rules table", PopulateRulesMetadataInRuleTable.class)
45       .add(6414, "Drop rules_metadata table", DropRuleMetadataTable.class)
46
47       .add(6415, "Migrate hotspot rule descriptions", MigrateHotspotRuleDescriptions.class)
48
49       .add(6416, "Remove onboarded column from User table", DropOnboardedColumnFromUserTable.class)
50
51       .add(6417, "Add column 'user_triggered' to 'audits'", AddUserTriggeredColumnToAudits.class)
52       .add(6418, "Upsert value of 'user_triggered' in 'audits'", UpsertAuditsUserTriggeredValue.class)
53     ;
54   }
55 }