Skip to content

Commit

Permalink
fix: Fix User Table name to Users
Browse files Browse the repository at this point in the history
  • Loading branch information
jinsu4755 committed Feb 12, 2024
1 parent f0aa856 commit 6672e26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/universe/uni/domain/entity/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import lombok.NoArgsConstructor;

@Entity
@Table(name = "user")
@Table(name = "users")
@Getter
@NoArgsConstructor(access = AccessLevel.PROTECTED)
public class User {
Expand Down

0 comments on commit 6672e26

Please sign in to comment.