10 lines
312 B
SQL
10 lines
312 B
SQL
/*
|
|
Warnings:
|
|
|
|
- The `missionStationIds` column on the `Mission` table would be dropped and recreated. This will lead to data loss if there is data in the column.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Mission" DROP COLUMN "missionStationIds",
|
|
ADD COLUMN "missionStationIds" INTEGER[] DEFAULT ARRAY[]::INTEGER[];
|