aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2012-11-19 15:36:47 +0100
committerJulien Lancelot <julien.lancelot@sonarsource.com>2012-11-19 15:36:47 +0100
commit4b8b230dcb7dd04415c31f4ab9ab7db44e7f284e (patch)
tree2647c74bfc4acfa04ede4019eb05a8a60721a800 /sonar-plugin-api
parent47e07c1a3a1af2f44f0d3226d9ba275e656646f3 (diff)
downloadsonarqube-4b8b230dcb7dd04415c31f4ab9ab7db44e7f284e.tar.gz
sonarqube-4b8b230dcb7dd04415c31f4ab9ab7db44e7f284e.zip
SONAR-2712 SONAR-3938 increase column size of snapshots.version and snapshots.path
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/database/model/Snapshot.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/database/model/Snapshot.java b/sonar-plugin-api/src/main/java/org/sonar/api/database/model/Snapshot.java
index f0a5cf93df6..6af64feb22f 100644
--- a/sonar-plugin-api/src/main/java/org/sonar/api/database/model/Snapshot.java
+++ b/sonar-plugin-api/src/main/java/org/sonar/api/database/model/Snapshot.java
@@ -58,7 +58,7 @@ public class Snapshot extends BaseIdentifiable {
@Column(name = "created_at", updatable = true, nullable = true)
private Date createdAt;
- @Column(name = "version", updatable = true, nullable = true, length = 60)
+ @Column(name = "version", updatable = true, nullable = true, length = 500)
private String version;
@Column(name = "islast")
@@ -73,7 +73,7 @@ public class Snapshot extends BaseIdentifiable {
@Column(name = "scope", updatable = true, nullable = true, length = 3)
private String scope;
- @Column(name = "path", updatable = true, nullable = true, length = 96)
+ @Column(name = "path", updatable = true, nullable = true, length = 500)
private String path;
@Column(name = "depth", updatable = true, nullable = true)