Skip to content

Commit

Permalink
fix: Long type 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
parkdaye committed Aug 15, 2023
1 parent f3f4b6f commit 6d84c50
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,7 @@ public class User extends BaseEntity {
@JoinColumn(name = "team_id")
private Team team;

private String teamBuildingId;

protected User(String name, Position position, String teamBuildingId) {
this.name = name;
this.position = position;
this.teamBuildingId = teamBuildingId;
this.uuid = UuidGenerator.createUuid();
}
private Long teamBuildingId;

public void addTeam(Team team) {
if (this.team != null) {
Expand Down

0 comments on commit 6d84c50

Please sign in to comment.