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