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