11 lines
322 B
SQL
11 lines
322 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `posSimulator` on the `ConnectedAircraft` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "ConnectedAircraft" DROP COLUMN "posSimulator",
|
|
ADD COLUMN "simulator" TEXT,
|
|
ADD COLUMN "simulatorConnected" BOOLEAN NOT NULL DEFAULT false;
|