Changes on 19-11-2025

This commit is contained in:
2025-11-19 14:52:11 +05:30
parent d1173ed400
commit 1aa92b7501
3 changed files with 32 additions and 11 deletions

View File

@ -77,10 +77,14 @@ public class Event {
@Column(name = "is_deleted", nullable = false)
private Boolean isDeleted = false;
// NEW FIELD: Book Seat Link
// Registration/Booking Link
@Column(name = "book_seat_link", length = 500)
private String bookSeatLink;
// Additional Information Link
@Column(name = "learn_more_link", length = 500)
private String learnMoreLink;
@ManyToMany
@JoinTable(
name = "event_professors",