This commit is contained in:
Bastian Wagner
2026-07-20 09:01:36 +02:00
parent 8cf57d7878
commit e62673ac11
98 changed files with 17372 additions and 80 deletions

View File

@@ -34,6 +34,9 @@ export class UserEntity {
@Column({ type: 'varchar', length: 320, nullable: true })
email!: string | null;
@Column({ name: 'email_verified', type: 'boolean', nullable: true })
emailVerified!: boolean | null;
@Column({ type: 'boolean', default: true })
active!: boolean;