Skip to content

Commit

Permalink
[CHORE] 사용하지 않는 컬럼 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
Chan531 committed Aug 14, 2024
1 parent 3257e3e commit 591c679
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 13 deletions.
3 changes: 0 additions & 3 deletions src/main/java/com/soptie/server/maker/entity/Maker.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ public class Maker {

private String profileImageUrl;

@Column(columnDefinition = "TEXT")
private String description;

private String content;

@Column(nullable = false)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ class Acquire {
String name = "maker";
String job = "job";
String profileImageUrl = "profileImageUrl";
String description = "description";
String content = "content";
List<String> tags = List.of("#tag1", "#tag2", "#tag3");

Expand All @@ -59,7 +58,6 @@ void setUp() {
.name(name)
.job(job)
.profileImageUrl(profileImageUrl)
.description(description)
.content(content)
.themeId(themeId1)
.tags(tags)
Expand All @@ -70,7 +68,6 @@ void setUp() {
.name(name)
.job(job)
.profileImageUrl(profileImageUrl)
.description(description)
.content(content)
.themeId(themeId2)
.tags(tags)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ public class MakerFixture {
private String name;
private String job;
private String profileImageUrl;
private String description;
private String content;
private Long themeId;
private List<String> tags;
Expand Down Expand Up @@ -42,11 +41,6 @@ public MakerFixture profileImageUrl(String profileImageUrl) {
return this;
}

public MakerFixture description(String description) {
this.description = description;
return this;
}

public MakerFixture content(String content) {
this.content = content;
return this;
Expand All @@ -63,6 +57,6 @@ public MakerFixture tags(List<String> tags) {
}

public Maker build() {
return new Maker(id, name, job, profileImageUrl, description, content, themeId, tags);
return new Maker(id, name, job, profileImageUrl, content, themeId, tags);
}
}

0 comments on commit 591c679

Please sign in to comment.