Close chat #169

Closed
RecentRunner wants to merge 291 commits from close-chat into main
Showing only changes of commit dac5f8c4a6 - Show all commits

View File

@@ -17,6 +17,10 @@ public class ActivityLog {
@JoinColumn(name = "userId", nullable = false)
private User user;
@ManyToOne
@JoinColumn(name = "storeId")
private StoreLocation store;
@Column(nullable = false, columnDefinition = "TEXT")
private String activity;
@@ -49,6 +53,14 @@ public class ActivityLog {
this.user = user;
}
public StoreLocation getStore() {
return store;
}
public void setStore(StoreLocation store) {
this.store = store;
}
public String getActivity() {
return activity;
}