Skip to content

Commit

Permalink
SONAR-7705 replace id by uuid in ViewsSnapshotDto
Browse files Browse the repository at this point in the history
  • Loading branch information
sns-seb committed Jul 7, 2016
1 parent 65e2080 commit eaf980f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Expand Up @@ -20,15 +20,15 @@
package org.sonar.db.component;

public class ViewsSnapshotDto {
private Long id;
private String uuid;
private Long createdAt;

public Long getId() {
return id;
public String getUuid() {
return uuid;
}

public void setId(Long id) {
this.id = id;
public void setUuid(String uuid) {
this.uuid = uuid;
}

public Long getCreatedAt() {
Expand Down
Expand Up @@ -30,7 +30,7 @@
</sql>

<sql id="viewsSnapshotColumns">
s.id,
s.uuid,
s.created_at as createdAt
</sql>

Expand Down

0 comments on commit eaf980f

Please sign in to comment.