Skip to main content

passwordResetTokensTableInsertSchema

API Docs


Variable: passwordResetTokensTableInsertSchema

const passwordResetTokensTableInsertSchema: BuildSchema<"insert", { createdAt: PgColumn<{ }, { }, { }>; expiresAt: PgColumn<{ }, { }, { }>; id: PgColumn<{ }, { }, { }>; tokenHash: PgColumn<{ }, { }, { }>; usedAt: PgColumn<{ }, { }, { }>; userId: PgColumn<{ }, { }, { }>; }, { expiresAt: (schema) => ZodDate; tokenHash: (schema) => ZodString; userId: (schema) => ZodUUID; }, undefined>

Defined in: src/drizzle/tables/passwordResetTokens.ts:74