This commit is contained in:
syuilo 2019-04-13 20:02:31 +09:00
parent 2d590df900
commit 343f2f1f33
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -19,11 +19,15 @@ export class AuthSession {
})
public token: string;
@Column(id())
@Column({
...id(),
nullable: true
})
public userId: User['id'];
@ManyToOne(type => User, {
onDelete: 'CASCADE'
onDelete: 'CASCADE',
nullable: true
})
@JoinColumn()
public user: User | null;