3 * Copyright (C) 2009-2021 SonarSource SA
4 * mailto:info AT sonarsource DOT com
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.
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.
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.
20 package org.sonar.server.platform.db.migration.version.v87;
22 import java.sql.SQLException;
23 import java.util.Arrays;
24 import org.sonar.db.Database;
25 import org.sonar.server.platform.db.migration.sql.DropConstraintBuilder;
26 import org.sonar.server.platform.db.migration.sql.DropIndexBuilder;
27 import org.sonar.server.platform.db.migration.sql.DropPrimaryKeySqlGenerator;
28 import org.sonar.server.platform.db.migration.sql.DropTableBuilder;
29 import org.sonar.server.platform.db.migration.step.DdlChange;
31 public class DropAlmAppInstallsTable extends DdlChange {
32 private static final String TABLE_NAME = "alm_app_installs";
33 private final DropPrimaryKeySqlGenerator dropPrimaryKeySqlGenerator;
35 public DropAlmAppInstallsTable(Database db, DropPrimaryKeySqlGenerator dropPrimaryKeySqlGenerator) {
37 this.dropPrimaryKeySqlGenerator = dropPrimaryKeySqlGenerator;
41 public void execute(Context context) throws SQLException {
42 context.execute(dropPrimaryKeySqlGenerator.generate(TABLE_NAME, "uuid", false));
43 context.execute(new DropIndexBuilder(getDialect()).setTable(TABLE_NAME).setName("alm_app_installs_owner").build());
44 context.execute(new DropIndexBuilder(getDialect()).setTable(TABLE_NAME).setName("alm_app_installs_install").build());
45 context.execute(new DropIndexBuilder(getDialect()).setTable(TABLE_NAME).setName("alm_app_installs_external_id").build());
46 context.execute(new DropTableBuilder(getDialect(), TABLE_NAME).build());