feat(dokploy): add reset password for cloud

This commit is contained in:
Mauricio Siu
2024-10-22 01:25:13 -06:00
parent 431dadb6c2
commit 1e6dbb5e8e
8 changed files with 4494 additions and 9 deletions

View File

@@ -48,6 +48,8 @@ export const auth = pgTable("auth", {
createdAt: text("createdAt")
.notNull()
.$defaultFn(() => new Date().toISOString()),
resetPasswordToken: text("resetPasswordToken"),
resetPasswordExpiresAt: text("resetPasswordExpiresAt"),
});
export const authRelations = relations(auth, ({ many }) => ({