From f3db73d5a0d1c21aeff82781e38e9c9797e18b8c Mon Sep 17 00:00:00 2001 From: yewonahn Date: Sat, 17 Feb 2024 05:16:20 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20=EB=8C=93=EA=B8=80=20=EA=B8=80?= =?UTF-8?q?=EC=9E=90=20=EC=88=98=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 댓글 글자 수 200자로 변경 --- src/comment/domain/comment.entity.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comment/domain/comment.entity.ts b/src/comment/domain/comment.entity.ts index 9bf2c3e..112d4ab 100644 --- a/src/comment/domain/comment.entity.ts +++ b/src/comment/domain/comment.entity.ts @@ -17,7 +17,7 @@ export class CommentEntity extends BaseEntity { @PrimaryGeneratedColumn({ type: 'bigint' }) id: number; - @Column({ type: 'varchar', length: 255 }) + @Column({ type: 'varchar', length: 200 }) content: string; @ManyToOne(() => RuleMainEntity, ruleMain => ruleMain.comments)