fix lint
This commit is contained in:
@@ -8,7 +8,7 @@ export class Signin {
|
||||
public id: string;
|
||||
|
||||
@Column('timestamp with time zone', {
|
||||
comment: 'The created date of the Signin.'
|
||||
comment: 'The created date of the Signin.',
|
||||
})
|
||||
public createdAt: Date;
|
||||
|
||||
@@ -17,7 +17,7 @@ export class Signin {
|
||||
public userId: User['id'];
|
||||
|
||||
@ManyToOne(type => User, {
|
||||
onDelete: 'CASCADE'
|
||||
onDelete: 'CASCADE',
|
||||
})
|
||||
@JoinColumn()
|
||||
public user: User | null;
|
||||
|
Reference in New Issue
Block a user