PMT-32: Rename End to Real End, because of Conflict with SQL syntax
All checks were successful
Quality Check / Validate OAS (push) Successful in 36s
Quality Check / Testing (push) Successful in 1m5s
Quality Check / Linting (push) Successful in 1m13s
Quality Check / Static Analysis (push) Successful in 1m18s

This commit is contained in:
Dominik Säume 2024-09-25 12:10:40 +02:00 committed by Dominik Säume
parent 5104c3934f
commit 5db4d4dab8
Signed by: SZUT-Dominik
GPG key ID: 67D15BB250B41E7C

View file

@ -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
} }