Skip to content

Commit

Permalink
fix starategy
Browse files Browse the repository at this point in the history
  • Loading branch information
cheesecrust committed May 29, 2024
1 parent 2075f34 commit d8682c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/capstone/maru/domain/Participation.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import jakarta.persistence.Entity;
import jakarta.persistence.FetchType;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import jakarta.persistence.Index;
import jakarta.persistence.JoinColumn;
Expand All @@ -23,7 +24,7 @@
public class Participation {

@Id
@GeneratedValue
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;

@ManyToOne(fetch = FetchType.LAZY)
Expand Down

0 comments on commit d8682c4

Please sign in to comment.