Skip to content

Commit

Permalink
🐛 [Fix] (#6) UserRepository JpaRepository 타입 Long -> String 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
seonyo committed May 11, 2024
1 parent 96e478a commit 2e20544
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
import com.MtoM.MtoM.domain.user.domain.UserDomain;
import org.springframework.data.jpa.repository.JpaRepository;

public interface UserRepository extends JpaRepository<UserDomain, Long> {
public interface UserRepository extends JpaRepository<UserDomain, String> {

}

0 comments on commit 2e20544

Please sign in to comment.