otp in database
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { Entity, Index, OptionalProps, PrimaryKey, Property } from '@mikro-orm/core';
|
||||
|
||||
@Entity({ tableName: 'otps' })
|
||||
@Index({ properties: ['phone'] })
|
||||
export class Otp {
|
||||
[OptionalProps]?: 'createdAt'
|
||||
|
||||
@PrimaryKey({ type: 'varchar', })
|
||||
phone!: string;
|
||||
|
||||
@Property()
|
||||
code!: string;
|
||||
|
||||
@Property({ columnType: 'timestamptz' })
|
||||
expiresAt!: Date
|
||||
}
|
||||
Reference in New Issue
Block a user