PMT-32: Rename End to Real End, because of Conflict with SQL syntax
Some checks failed
Quality Check / Validate OAS (push) Successful in 31s
Quality Check / Testing (push) Successful in 1m36s
Quality Check / Linting (push) Successful in 1m48s
Quality Check / Static Analysis (push) Successful in 1m49s
Quality Check / Static Analysis (pull_request) Failing after 7s
Quality Check / Validate OAS (pull_request) Successful in 29s
Quality Check / Testing (pull_request) Successful in 1m12s
Quality Check / Linting (pull_request) Successful in 1m20s

This commit is contained in:
Dominik Säume 2024-09-25 12:10:40 +02:00
parent 3a174b64c1
commit 2953e81da9
No known key found for this signature in database
GPG key ID: F5211AA345CF6871

View file

@ -17,7 +17,7 @@ import java.time.LocalDateTime;
@Setter
@Entity
@Table(name = "project")
public final class Project {
public class Project {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@ -42,6 +42,6 @@ public final class Project {
@NotNull
private LocalDateTime plannedEnd;
private LocalDateTime end;
private LocalDateTime realEnd; // Cant be named just "end" because it's and SQL Keyword
}