Skip to content

Commit

Permalink
fix: oauth_email unique 제약 조건 삭제 (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
char-yb authored Aug 30, 2024
1 parent dc957c9 commit 05e65e6
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.depromeet.stonebed.domain.member.domain;

import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.persistence.Column;
import jakarta.persistence.Embeddable;
import lombok.AccessLevel;
import lombok.Builder;
Expand All @@ -20,7 +19,6 @@ public class OauthInfo {
private String oauthProvider;

@Schema(description = "소셜 이메일", example = "[email protected]")
@Column(unique = true)
private String oauthEmail;

@Builder(access = AccessLevel.PRIVATE)
Expand Down

0 comments on commit 05e65e6

Please sign in to comment.