Re-instated ResetPasswordRequest, almost oops
parent
90e4091b06
commit
f7f5e2cc17
|
@ -1,15 +1,6 @@
|
||||||
/*
|
|
||||||
Warnings:
|
|
||||||
|
|
||||||
- You are about to drop the `ResetPasswordRequest` table. If the table is not empty, all the data it contains will be lost.
|
|
||||||
|
|
||||||
*/
|
|
||||||
-- AlterTable
|
-- AlterTable
|
||||||
ALTER TABLE "EventType" ADD COLUMN "timeZone" TEXT;
|
ALTER TABLE "EventType" ADD COLUMN "timeZone" TEXT;
|
||||||
|
|
||||||
-- DropTable
|
|
||||||
DROP TABLE "ResetPasswordRequest";
|
|
||||||
|
|
||||||
-- CreateTable
|
-- CreateTable
|
||||||
CREATE TABLE "Availability" (
|
CREATE TABLE "Availability" (
|
||||||
"id" SERIAL NOT NULL,
|
"id" SERIAL NOT NULL,
|
||||||
|
|
|
@ -160,3 +160,10 @@ model EventTypeCustomInput {
|
||||||
required Boolean
|
required Boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
|
model ResetPasswordRequest {
|
||||||
|
id String @id @default(cuid())
|
||||||
|
createdAt DateTime @default(now())
|
||||||
|
updatedAt DateTime @updatedAt
|
||||||
|
email String
|
||||||
|
expires DateTime
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue