Skip to content

Commit

Permalink
fix:sync with mater branch
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmy0006 authored Dec 3, 2024
1 parent 324826b commit edb8c10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/poolc/api/activity/domain/Session.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class Session {
@JoinColumn(name = "activity_id", nullable = false, referencedColumnName = "id")
private Activity activity;

@Column(name = "description", nullable = false, columnDefinition = "varchar(1024)")
@Column(name = "description", nullable = false, columnDefinition = "varchar(2048)")
private String description;

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

}
}

0 comments on commit edb8c10

Please sign in to comment.