Skip to content

Commit

Permalink
catType 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Sungho95 committed Dec 20, 2023
1 parent 6e2ec51 commit c184c70
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/entities/answer.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ export class Answer extends BaseEntity {
})
receiverNickname: string;

@Column( {
name: 'cat_type',
comment: '고양이 타입',
nullable: false
})
catType: string;

@Column({ name: 'content', comment: '답장 내용', nullable: false })
content: string;
}

0 comments on commit c184c70

Please sign in to comment.