15 lines
846 B
SQL
15 lines
846 B
SQL
/*
|
|
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;
|