Update migration to include iCalSequence
parent
f050f0c869
commit
25b83c3978
|
@ -5,4 +5,5 @@
|
||||||
|
|
||||||
*/
|
*/
|
||||||
-- AlterTable
|
-- AlterTable
|
||||||
ALTER TABLE "Booking" ADD COLUMN "iCalUID" TEXT NOT NULL;
|
ALTER TABLE "Booking" ADD COLUMN "iCalSequence" INTEGER NOT NULL DEFAULT 0,
|
||||||
|
ADD COLUMN "iCalUID" TEXT NOT NULL;
|
|
@ -418,6 +418,7 @@ model Booking {
|
||||||
metadata Json?
|
metadata Json?
|
||||||
isRecorded Boolean @default(false)
|
isRecorded Boolean @default(false)
|
||||||
iCalUID String
|
iCalUID String
|
||||||
|
iCalSequence Int @default(0)
|
||||||
|
|
||||||
@@index([eventTypeId])
|
@@index([eventTypeId])
|
||||||
@@index([userId])
|
@@index([userId])
|
||||||
|
|
Loading…
Reference in New Issue