added migrations folder to git-project to sync resolved migrations

This commit is contained in:
PxlLoewe
2025-06-27 18:44:18 -07:00
parent e3988c24e3
commit 8071f4b764
57 changed files with 1012 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
-- AlterTable
ALTER TABLE "ConnectedAircraft" ADD COLUMN "fmsStatus" TEXT NOT NULL DEFAULT '6',
ADD COLUMN "posAlt" INTEGER,
ADD COLUMN "posH145active" BOOLEAN NOT NULL DEFAULT false,
ADD COLUMN "posHeading" INTEGER,
ADD COLUMN "posLat" DOUBLE PRECISION,
ADD COLUMN "posLng" DOUBLE PRECISION,
ADD COLUMN "posSimulator" TEXT,
ADD COLUMN "posSpeed" INTEGER;