Skip to content

Commit

Permalink
chore: update table name user to member for reserved word
Browse files Browse the repository at this point in the history
  • Loading branch information
FacerAin committed Jan 27, 2024
1 parent 72df53f commit ae847b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/dnd/modutimer/user/domain/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@Getter
@Entity
@Table(name = "user")
@Table(name = "member")
@Where(clause = "is_deleted=0")
@AttributeOverride(name = "id", column = @Column(name = "user_id"))
public class User extends AbstractJpaEntity {
Expand Down

0 comments on commit ae847b4

Please sign in to comment.