From 127ae8720e830bafa5d8887c938fe40340ed8147 Mon Sep 17 00:00:00 2001 From: PxlLoewe <72106766+PxlLoewe@users.noreply.github.com> Date: Mon, 14 Jul 2025 14:44:04 -0700 Subject: [PATCH] migration --- .../migration.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/database/prisma/schema/migrations/20250714214301_add_agl_height_to_position_log/migration.sql b/packages/database/prisma/schema/migrations/20250714214301_add_agl_height_to_position_log/migration.sql index e4cf4aa5..ecfe779c 100644 --- a/packages/database/prisma/schema/migrations/20250714214301_add_agl_height_to_position_log/migration.sql +++ b/packages/database/prisma/schema/migrations/20250714214301_add_agl_height_to_position_log/migration.sql @@ -5,6 +5,9 @@ - Added the required column `altAGL` to the `PositionLog` table without a default value. This is not possible if the table is not empty. */ + +DELETE FROM "PositionLog"; + -- AlterTable ALTER TABLE "Heliport" DROP COLUMN "country", ADD COLUMN "country" TEXT;