aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-db/src/test/resources/org
diff options
context:
space:
mode:
authorTeryk Bellahsene <teryk.bellahsene@sonarsource.com>2016-12-02 18:12:56 +0100
committerTeryk Bellahsene <teryk.bellahsene@sonarsource.com>2016-12-05 16:52:54 +0100
commit37494f41d3d07042fedb9bab93fb44587866db05 (patch)
tree88a381ec0813aa9fd8343fc4bc21b7d20d11aeb2 /sonar-db/src/test/resources/org
parent19882feb2c947ed14cc90190a000d6fa0d3b39d0 (diff)
downloadsonarqube-37494f41d3d07042fedb9bab93fb44587866db05.tar.gz
sonarqube-37494f41d3d07042fedb9bab93fb44587866db05.zip
SONAR-8464 Populate UUID column of table EVENTS
Diffstat (limited to 'sonar-db/src/test/resources/org')
-rw-r--r--sonar-db/src/test/resources/org/sonar/db/version/v63/PopulateUuidColumnOfEventsTest/in_progress_events.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/sonar-db/src/test/resources/org/sonar/db/version/v63/PopulateUuidColumnOfEventsTest/in_progress_events.sql b/sonar-db/src/test/resources/org/sonar/db/version/v63/PopulateUuidColumnOfEventsTest/in_progress_events.sql
new file mode 100644
index 00000000000..d83b16dd817
--- /dev/null
+++ b/sonar-db/src/test/resources/org/sonar/db/version/v63/PopulateUuidColumnOfEventsTest/in_progress_events.sql
@@ -0,0 +1,12 @@
+CREATE TABLE "EVENTS" (
+ "ID" INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1),
+ "UUID" VARCHAR(40),
+ "NAME" VARCHAR(400),
+ "ANALYSIS_UUID" VARCHAR(50) NOT NULL,
+ "COMPONENT_UUID" VARCHAR(50),
+ "CATEGORY" VARCHAR(50),
+ "EVENT_DATE" BIGINT NOT NULL,
+ "CREATED_AT" BIGINT NOT NULL,
+ "DESCRIPTION" VARCHAR(4000),
+ "EVENT_DATA" VARCHAR(4000)
+);