9 lines
252 B
SQL
9 lines
252 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Made the column `missionKeywordCategory` on table `Mission` required. This step will fail if there are existing NULL values in that column.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Mission" ALTER COLUMN "missionKeywordCategory" SET NOT NULL;
|