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

Commit

Permalink
fix : 댓글 글자 수 변경
Browse files Browse the repository at this point in the history
댓글 글자 수 200자로 변경
  • Loading branch information
yewonahn committed Feb 16, 2024
1 parent b0b6bd5 commit f3db73d
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 f3db73d

Please sign in to comment.