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

Commit

Permalink
fix : 규칙 제목 글자 수 제한 수정 (#242)
Browse files Browse the repository at this point in the history
규칙 전체 제목, 개별 제목 글자 수 제한 수정 (200자)
  • Loading branch information
yewonahn committed Feb 16, 2024
2 parents 62d610d + ffbad0b commit 62cc4a3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Empty file.
2 changes: 1 addition & 1 deletion src/rule/domain/rule.main.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class RuleMainEntity extends BaseEntity {
@PrimaryGeneratedColumn({ type: 'bigint' })
id: number;

@Column({ type: 'varchar', length: 255 })
@Column({ type: 'varchar', length: 200 })
mainTitle: string;

@CreateDateColumn()
Expand Down
2 changes: 1 addition & 1 deletion src/rule/domain/rule.sub.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class RuleSubEntity extends BaseEntity {
@PrimaryGeneratedColumn()
id: number;

@Column({ type: 'varchar', length: 255 })
@Column({ type: 'varchar', length: 200 })
ruleTitle: string;

@Column({ type: 'text' })
Expand Down

0 comments on commit 62cc4a3

Please sign in to comment.