Use meta field for booking reference
parent
7ec36bde63
commit
174c252f67
|
@ -1,4 +0,0 @@
|
||||||
-- AlterTable
|
|
||||||
ALTER TABLE "BookingReference" ADD COLUMN "meetingId" TEXT,
|
|
||||||
ADD COLUMN "meetingPassword" TEXT,
|
|
||||||
ADD COLUMN "meetingUrl" TEXT;
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
-- AlterTable
|
||||||
|
ALTER TABLE "BookingReference" ADD COLUMN "meta" TEXT;
|
|
@ -133,9 +133,7 @@ model BookingReference {
|
||||||
id Int @id @default(autoincrement())
|
id Int @id @default(autoincrement())
|
||||||
type String
|
type String
|
||||||
uid String
|
uid String
|
||||||
meetingId String?
|
meta String?
|
||||||
meetingPassword String?
|
|
||||||
meetingUrl String?
|
|
||||||
booking Booking? @relation(fields: [bookingId], references: [id])
|
booking Booking? @relation(fields: [bookingId], references: [id])
|
||||||
bookingId Int?
|
bookingId Int?
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue