Ajout endpoint géolocalisation
This commit is contained in:
@ -0,0 +1,14 @@
|
||||
/*
|
||||
Warnings:
|
||||
|
||||
- Added the required column `accuracy` to the `Geolocation` table without a default value. This is not possible if the table is not empty.
|
||||
- Added the required column `altitude` to the `Geolocation` table without a default value. This is not possible if the table is not empty.
|
||||
- Added the required column `altitudeAccuracy` to the `Geolocation` table without a default value. This is not possible if the table is not empty.
|
||||
- Added the required column `speed` to the `Geolocation` table without a default value. This is not possible if the table is not empty.
|
||||
|
||||
*/
|
||||
-- AlterTable
|
||||
ALTER TABLE "Geolocation" ADD COLUMN "accuracy" DOUBLE PRECISION NOT NULL,
|
||||
ADD COLUMN "altitude" DOUBLE PRECISION NOT NULL,
|
||||
ADD COLUMN "altitudeAccuracy" DOUBLE PRECISION NOT NULL,
|
||||
ADD COLUMN "speed" DOUBLE PRECISION NOT NULL;
|
Reference in New Issue
Block a user