Skip to content

Commit

Permalink
fix: Scrap content 길이 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
dnjsqls5973 committed Nov 8, 2023
1 parent 44087c8 commit d8399cb
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/main/java/WithYou/domain/scrap/entity/Scrap.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,9 @@

import WithYou.domain.member.entity.Member;
import WithYou.global.common.entity.BaseEntity;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;

import javax.persistence.*;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
Expand All @@ -26,6 +22,7 @@ public class Scrap extends BaseEntity {
private Long postId;

private String title;
@Column(length = 5000)
private String content;
private String imageUrl;

Expand Down

0 comments on commit d8399cb

Please sign in to comment.