Skip to content

Commit

Permalink
fix: merge conflict 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
dong2ast committed Nov 7, 2023
1 parent af2afe0 commit 25ec05f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/com/uspray/uspray/InitDb.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.uspray.uspray;

import com.uspray.uspray.Enums.Authority;
import com.uspray.uspray.Enums.PrayType;
import com.uspray.uspray.domain.Category;
import com.uspray.uspray.domain.Member;
import com.uspray.uspray.domain.Pray;
Expand Down Expand Up @@ -56,7 +57,7 @@ public void dbInit() {
.deadline(LocalDate.parse("2025-01-01"))
.member(member)
.category(category)
.prayType(com.uspray.uspray.Enums.PrayType.PERSONAL)
.prayType(PrayType.PERSONAL)
.build();
em.persist(pray);
}
Expand Down

0 comments on commit 25ec05f

Please sign in to comment.