10 lines
281 B
SQL
10 lines
281 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `addressMissionLocation` on the `Mission` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Mission" DROP COLUMN "addressMissionLocation",
|
|
ADD COLUMN "addressMissionDestination" TEXT DEFAULT '';
|