Backend refactor #141

Merged
RecentRunner merged 15 commits from backend-refactor into main 2026-04-06 20:51:44 -06:00
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;
}