Files
calendar/packages/prisma/migrations/20240411114622_platform_urls_emails/migration.sql
T
7836aeacc6 feat: add redirect uris for booking success, cancel and reschedule for a platform user (#14518)
* update typings

* update prisma to include redirect uris for booking success, cancel and reschedule

* update migrations

* add input for uris and send them back in custom hook

* display new uris

* add type for enabling emails

* update prisma schema and add migrations

* chores

* fixup

* chore: fix style, remove console log, rewrite migration

---------

Co-authored-by: Morgan Vernay <morgan@cal.com>
Co-authored-by: Morgan <33722304+ThyMinimalDev@users.noreply.github.com>
2024-04-11 17:46:57 +00:00

6 lines
256 B
SQL

-- AlterTable
ALTER TABLE "PlatformOAuthClient" ADD COLUMN "areEmailsEnabled" BOOLEAN NOT NULL DEFAULT false,
ADD COLUMN "bookingCancelRedirectUri" TEXT,
ADD COLUMN "bookingRedirectUri" TEXT,
ADD COLUMN "bookingRescheduleRedirectUri" TEXT;