Datentypen in Prod DB vorbereiten für release #69

Merged
PxlLoewe merged 56 commits from staging into release 2025-07-18 20:05:13 +00:00
Showing only changes of commit 5c334cde63 - Show all commits

View File

@@ -0,0 +1,13 @@
/*
Warnings:
- The `country` column on the `Heliport` table would be dropped and recreated. This will lead to data loss if there is data in the column.
- Added the required column `altAGL` to the `PositionLog` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "Heliport" DROP COLUMN "country",
ADD COLUMN "country" TEXT;
-- AlterTable
ALTER TABLE "PositionLog" ADD COLUMN "altAGL" INTEGER NOT NULL;