feat: add admin email domain management and sync job (#2538)

This commit is contained in:
Lucas Smith
2026-02-25 15:14:18 +11:00
committed by GitHub
parent bc72d9cb17
commit c112392da9
22 changed files with 1257 additions and 5 deletions
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "EmailDomain" ADD COLUMN "lastVerifiedAt" TIMESTAMP(3);
+5 -4
View File
@@ -1037,10 +1037,11 @@ model EmailDomain {
status EmailDomainStatus @default(PENDING)
selector String @unique
domain String @unique
publicKey String
privateKey String
selector String @unique
domain String @unique
publicKey String
privateKey String
lastVerifiedAt DateTime?
organisationId String
organisation Organisation @relation(fields: [organisationId], references: [id], onDelete: Cascade)