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)