Skip to content

Commit

Permalink
🗃️ :: db :: User Entity nullable true
Browse files Browse the repository at this point in the history
  • Loading branch information
soyeonkim0227 committed Dec 29, 2023
1 parent 15edd3d commit 2bf7c90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/user/entities/user.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ export class User {
@Column({ unique: true })
email: string;

@Column()
@Column({ nullable: true })
profile: string;

@Column()
@Column({ nullable: true })
background: string;

@Column()
Expand Down

0 comments on commit 2bf7c90

Please sign in to comment.