Skip to content

Commit

Permalink
Merge pull request #133 from woody35545/bugfix/user-pk-type
Browse files Browse the repository at this point in the history
fix: resolve issue #131 by fixing primary key type for user entity
  • Loading branch information
arey authored May 28, 2024
2 parents 4085009 + c1ac144 commit 0618de8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
import org.springframework.samples.petclinic.repository.UserRepository;

@Profile("spring-data-jpa")
public interface SpringDataUserRepository extends UserRepository, Repository<User, Integer> {
public interface SpringDataUserRepository extends UserRepository, Repository<User, String> {

}

0 comments on commit 0618de8

Please sign in to comment.