Skip to content

Commit

Permalink
HELLODATA-1881 - adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
Slawomir Wieczorek committed Jan 22, 2025
1 parent 1b40cbd commit ab04b0e
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,13 @@
import jakarta.validation.constraints.NotNull;
import jakarta.validation.constraints.Size;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import lombok.Setter;

import java.util.Collection;

@Entity(name = "dbt_user")
@Getter
@Setter
@RequiredArgsConstructor
public class User extends BaseEntity {

@Column(unique = true)
Expand Down Expand Up @@ -71,4 +69,9 @@ public class User extends BaseEntity {
public User() {//NOSONAR

}

public User(String userName, String email) {
this.userName = userName;
this.email = email;
}
}

0 comments on commit ab04b0e

Please sign in to comment.