Skip to content

Commit edb8c10

Browse files
authored
fix:sync with mater branch
1 parent 324826b commit edb8c10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/poolc/api/activity/domain/Session.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class Session {
3030
@JoinColumn(name = "activity_id", nullable = false, referencedColumnName = "id")
3131
private Activity activity;
3232

33-
@Column(name = "description", nullable = false, columnDefinition = "varchar(1024)")
33+
@Column(name = "description", nullable = false, columnDefinition = "varchar(2048)")
3434
private String description;
3535

3636
@Column(name = "date", nullable = false, columnDefinition = "date")
@@ -98,4 +98,4 @@ public int hashCode() {
9898
return Objects.hash(getId(), getActivity(), getDescription(), getDate(), getSessionNumber());
9999
}
100100

101-
}
101+
}

0 commit comments

Comments
 (0)