Skip to content

Commit 39f4c56

Browse files
authored
Merge pull request #24 from minorcell/djh
fix: update userName column type to varchar(100) in recruitment entity
2 parents 8547fc1 + 148af05 commit 39f4c56

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.DS_Store

2 KB
Binary file not shown.

src/recruitment/entities/recruiment.entity.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ export class RecruitmentEntity {
2727
@Column({
2828
name: 'user_name',
2929
nullable: false,
30-
type: 'string'
30+
type: 'varchar',
31+
length: 100
3132
})
3233
userName: string;
3334

0 commit comments

Comments
 (0)