PMT-32: Rename End to Real End, because of Conflict with SQL syntax
This commit is contained in:
parent
5104c3934f
commit
5db4d4dab8
1 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ import java.time.LocalDateTime;
|
||||||
@Setter
|
@Setter
|
||||||
@Entity
|
@Entity
|
||||||
@Table(name = "project")
|
@Table(name = "project")
|
||||||
public final class Project {
|
public class Project {
|
||||||
@Id
|
@Id
|
||||||
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||||
private Long id;
|
private Long id;
|
||||||
|
@ -42,6 +42,6 @@ public final class Project {
|
||||||
@NotNull
|
@NotNull
|
||||||
private LocalDateTime plannedEnd;
|
private LocalDateTime plannedEnd;
|
||||||
|
|
||||||
private LocalDateTime end;
|
private LocalDateTime realEnd; // Cant be named just "end" because it's and SQL Keyword
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue