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