-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: oauth_email unique 제약 조건 삭제 (#248)
- Loading branch information
Showing
1 changed file
with
0 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
|
@@ -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) | ||
|