feat(pause ad): add pause in db with prisma
This commit is contained in:
parent
cc9b45c6a1
commit
f6d00f5e37
|
@ -0,0 +1,2 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE "ad" ADD COLUMN "pause" BOOLEAN NOT NULL DEFAULT false;
|
|
@ -29,6 +29,7 @@ model Ad {
|
|||
passengerDuration Int?
|
||||
passengerDistance Int?
|
||||
waypoints Unsupported("geography(LINESTRING)")?
|
||||
pause Boolean @default(false)
|
||||
direction Unsupported("geography(LINESTRING)")?
|
||||
fwdAzimuth Int
|
||||
backAzimuth Int
|
||||
|
|
Loading…
Reference in New Issue