Skip to content

Commit

Permalink
EPMRPP-93599 update user_creation_bid models
Browse files Browse the repository at this point in the history
  • Loading branch information
grabsefx committed Sep 17, 2024
1 parent 9602b5e commit 180190a
Showing 1 changed file with 0 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,6 @@ public class UserCreationBid implements Serializable, Modifiable {
@Column(name = "email")
private String email;

@Column(name = "project_name")
private String projectName;

@Column(name = "role")
private String role;

@OneToOne(cascade = CascadeType.ALL)
@JoinColumn(name = "inviting_user_id")
private User invitingUser;
Expand All @@ -86,22 +80,6 @@ public void setEmail(String email) {
this.email = email;
}

public String getProjectName() {
return projectName;
}

public void setProjectName(String projectName) {
this.projectName = projectName;
}

public String getRole() {
return role;
}

public void setRole(String role) {
this.role = role;
}

@Override
public Instant getLastModified() {
return lastModified;
Expand Down

0 comments on commit 180190a

Please sign in to comment.