Skip to content

Commit

Permalink
Merge pull request #42 from kakao-tech-campus-2nd-step3/develop
Browse files Browse the repository at this point in the history
develop - 정기 병합
  • Loading branch information
yooonwodyd authored Oct 14, 2024
2 parents 605d1ae + e834c8f commit 56c3be3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 4 additions & 0 deletions src/main/java/com/helpmeCookies/user/entity/ArtistInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ public class ArtistInfo {
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;

private Long userId;

private String artistType;

@Column(nullable = false)
private Long totalFollowers;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ public class BusinessArtist {
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;

@Column(nullable = false)
private Long userId;

@Column(nullable = false)
private String businessNumber;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ public class StudentArtist {
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;

@Column(nullable = false)
private Long userId;

@Column(nullable = false)
private String schoolEmail;
@Column(nullable = false)
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/helpmeCookies/user/entity/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ public class User {
@Column(nullable = false)
private Long id;

@Column(nullable = false)
private String name;

@Column(nullable = false)
private String nickname;

Expand Down

0 comments on commit 56c3be3

Please sign in to comment.