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