11 lines
334 B
SQL
11 lines
334 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `hpgMSelectedMissionString` on the `Mission` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Mission" DROP COLUMN "hpgMSelectedMissionString",
|
|
ADD COLUMN "hpgSelectedMissionString" TEXT DEFAULT '',
|
|
ALTER COLUMN "hpgMissionString" SET DEFAULT '';
|