Merge branch 'main' of github.com:calendso/calendso into feature/scheduling

pull/293/head
Alex van Andel 2021-06-28 19:53:07 +00:00
commit b4272ad7aa
2 changed files with 13 additions and 0 deletions

View File

@ -238,6 +238,9 @@ export default function Book(props: any): JSX.Element {
id="phone"
required
className="shadow-sm focus:ring-blue-500 focus:border-blue-500 block w-full sm:text-sm border-gray-300 rounded-md"
onChange={() => {
/* DO NOT REMOVE: Callback required by PhoneInput, comment added to satisfy eslint:no-empty-function */
}}
/>
</div>
</div>

View File

@ -0,0 +1,10 @@
-- CreateTable
CREATE TABLE "ResetPasswordRequest" (
"id" TEXT NOT NULL,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"updatedAt" TIMESTAMP(3) NOT NULL,
"email" TEXT NOT NULL,
"expires" TIMESTAMP(3) NOT NULL,
PRIMARY KEY ("id")
);