Update database/entity/0049-add_user_contacts_table/User.ts

Co-authored-by: Moriz Wahl <moriz.wahl@gmx.de>
This commit is contained in:
clauspeterhuebner 2022-09-15 01:05:34 +02:00 committed by GitHub
parent 45330a60fa
commit 9a99a8741d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -122,5 +122,5 @@ export class User extends BaseEntity {
@OneToMany(() => UserContact, (userContact: UserContact) => userContact.user)
@JoinColumn({ name: 'user_id' })
usercontacts?: UserContact[]
userContacts?: UserContact[]
}