Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
fix : 댓글 글자 수 변경 (#241)
Browse files Browse the repository at this point in the history
댓글 글자 수 200자로 변경
  • Loading branch information
yewonahn committed Feb 16, 2024
2 parents b0b6bd5 + f3db73d commit 62d610d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/comment/domain/comment.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 62d610d

Please sign in to comment.