8 lines
250 B
SQL
8 lines
250 B
SQL
/*
|
|
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;
|