aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-db-migration
diff options
context:
space:
mode:
authorDuarte Meneses <duarte.meneses@sonarsource.com>2019-11-19 10:28:55 -0600
committerSonarTech <sonartech@sonarsource.com>2019-12-09 20:46:17 +0100
commitebdae1d5b7916abb7e919c560b04841f0dfd21c6 (patch)
treedff14e70bbf3d19936e45f17ebc58dc48145586b /server/sonar-db-migration
parenta98070323ef55ce3934a564e0cf49a5e8fe03971 (diff)
downloadsonarqube-ebdae1d5b7916abb7e919c560b04841f0dfd21c6.tar.gz
sonarqube-ebdae1d5b7916abb7e919c560b04841f0dfd21c6.zip
SONAR-12673 Fix issue management
Diffstat (limited to 'server/sonar-db-migration')
-rw-r--r--server/sonar-db-migration/src/test/resources/org/sonar/server/platform/db/migration/version/v80/MakeExcludeBranchFromPurgeColumnNotNullableTest/schema.sql13
1 files changed, 0 insertions, 13 deletions
diff --git a/server/sonar-db-migration/src/test/resources/org/sonar/server/platform/db/migration/version/v80/MakeExcludeBranchFromPurgeColumnNotNullableTest/schema.sql b/server/sonar-db-migration/src/test/resources/org/sonar/server/platform/db/migration/version/v80/MakeExcludeBranchFromPurgeColumnNotNullableTest/schema.sql
deleted file mode 100644
index 8e8a6fab7a7..00000000000
--- a/server/sonar-db-migration/src/test/resources/org/sonar/server/platform/db/migration/version/v80/MakeExcludeBranchFromPurgeColumnNotNullableTest/schema.sql
+++ /dev/null
@@ -1,13 +0,0 @@
-CREATE TABLE PROJECT_BRANCHES(
- UUID VARCHAR(50) NOT NULL,
- PROJECT_UUID VARCHAR(50) NOT NULL,
- KEE VARCHAR(255) NOT NULL,
- BRANCH_TYPE VARCHAR(12),
- MERGE_BRANCH_UUID VARCHAR(50),
- KEY_TYPE VARCHAR(12) NOT NULL,
- PULL_REQUEST_BINARY BLOB,
- MANUAL_BASELINE_ANALYSIS_UUID VARCHAR(40),
- CREATED_AT BIGINT NOT NULL,
- UPDATED_AT BIGINT NOT NULL,
- EXCLUDE_FROM_PURGE BOOLEAN
-);