Add iCalUID to booking
parent
c2a57fd72b
commit
b045e996b4
|
@ -0,0 +1,8 @@
|
||||||
|
/*
|
||||||
|
Warnings:
|
||||||
|
|
||||||
|
- Added the required column `iCalUID` to the `Booking` table without a default value. This is not possible if the table is not empty.
|
||||||
|
|
||||||
|
*/
|
||||||
|
-- AlterTable
|
||||||
|
ALTER TABLE "Booking" ADD COLUMN "iCalUID" TEXT NOT NULL;
|
|
@ -417,6 +417,7 @@ model Booking {
|
||||||
/// @zod.custom(imports.bookingMetadataSchema)
|
/// @zod.custom(imports.bookingMetadataSchema)
|
||||||
metadata Json?
|
metadata Json?
|
||||||
isRecorded Boolean @default(false)
|
isRecorded Boolean @default(false)
|
||||||
|
iCalUID String
|
||||||
|
|
||||||
@@index([eventTypeId])
|
@@index([eventTypeId])
|
||||||
@@index([userId])
|
@@index([userId])
|
||||||
|
|
Loading…
Reference in New Issue