From cf4fa714ea0ced0a8afdb53dc89e04b17a6aa3d2 Mon Sep 17 00:00:00 2001 From: kmi0817 Date: Thu, 23 Nov 2023 16:54:40 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=BB=AC=EB=9F=BC=EB=AA=85=20type=20?= =?UTF-8?q?=E2=86=92=20socialType=EC=9C=BC=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BE/src/users/entities/user.entity.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BE/src/users/entities/user.entity.ts b/BE/src/users/entities/user.entity.ts index 39d08c2..01fc69b 100644 --- a/BE/src/users/entities/user.entity.ts +++ b/BE/src/users/entities/user.entity.ts @@ -38,6 +38,6 @@ export class User { postings: Posting[]; @ManyToOne(() => SocialLogin, (socialLogin) => socialLogin.users) - @JoinColumn({ name: 'type', referencedColumnName: 'id' }) + @JoinColumn({ name: 'socialType', referencedColumnName: 'id' }) socials: SocialLogin; }