Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/com/dyplom/model/Group.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ public class Group {
@NotNull
@Size(min = 4,max=4, message = "Group name should consist of 4 symbols!")
@Column(name = "group_name")
private String groupName;
private String groupName;
}
2 changes: 1 addition & 1 deletion src/main/java/com/dyplom/model/Student.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@AllArgsConstructor
@Table(name = "students", schema = "public")
public class Student {
@Id
@Id
@Column(name = "student_id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private int studentId;
Expand Down