mirror of
https://gitlab.com/mobicoop/v3/service/matcher.git
synced 2026-01-30 09:50:46 +00:00
feat(pause ad): add pause in db with prisma
This commit is contained in:
2
prisma/migrations/20240515150021_pause/migration.sql
Normal file
2
prisma/migrations/20240515150021_pause/migration.sql
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
-- AlterTable
|
||||||
|
ALTER TABLE "ad" ADD COLUMN "pause" BOOLEAN NOT NULL DEFAULT false;
|
||||||
@@ -29,6 +29,7 @@ model Ad {
|
|||||||
passengerDuration Int?
|
passengerDuration Int?
|
||||||
passengerDistance Int?
|
passengerDistance Int?
|
||||||
waypoints Unsupported("geography(LINESTRING)")?
|
waypoints Unsupported("geography(LINESTRING)")?
|
||||||
|
pause Boolean @default(false)
|
||||||
direction Unsupported("geography(LINESTRING)")?
|
direction Unsupported("geography(LINESTRING)")?
|
||||||
fwdAzimuth Int
|
fwdAzimuth Int
|
||||||
backAzimuth Int
|
backAzimuth Int
|
||||||
|
|||||||
Reference in New Issue
Block a user