2021-05-04 09:05:34 +03:00
|
|
|
import { PrimaryColumn, Entity, Index, Column, ManyToOne, JoinColumn } from 'typeorm';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { id } from '../id.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { User } from './User.js';
|
2021-05-04 09:05:34 +03:00
|
|
|
|
|
|
|
@Entity()
|
|
|
|
export class PasswordResetRequest {
|
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Column('timestamp with time zone')
|
|
|
|
public createdAt: Date;
|
|
|
|
|
|
|
|
@Index({ unique: true })
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 256,
|
|
|
|
})
|
|
|
|
public token: string;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
})
|
|
|
|
public userId: User['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => User, {
|
2021-12-09 16:58:30 +02:00
|
|
|
onDelete: 'CASCADE',
|
2021-05-04 09:05:34 +03:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public user: User | null;
|
|
|
|
}
|