36 lines
654 B
TypeScript
36 lines
654 B
TypeScript
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
||
|
import { User } from './user';
|
||
|
import { id } from '../id';
|
||
|
|
||
|
@Entity()
|
||
|
export class Signin {
|
||
|
@PrimaryColumn(id())
|
||
|
public id: string;
|
||
|
|
||
|
@Column('timestamp with time zone', {
|
||
|
comment: 'The created date of the Signin.'
|
||
|
})
|
||
|
public createdAt: Date;
|
||
|
|
||
|
@Index()
|
||
|
@Column(id())
|
||
|
public userId: User['id'];
|
||
|
|
||
|
@ManyToOne(type => User, {
|
||
|
onDelete: 'CASCADE'
|
||
|
})
|
||
|
@JoinColumn()
|
||
|
public user: User | null;
|
||
|
|
||
|
@Column('varchar', {
|
||
|
length: 128,
|
||
|
})
|
||
|
public ip: string;
|
||
|
|
||
|
@Column('jsonb')
|
||
|
public headers: Record<string, any>;
|
||
|
|
||
|
@Column('boolean')
|
||
|
public success: boolean;
|
||
|
}
|