14 lines
492 B
SQL
14 lines
492 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Made the column `communityId` on table `Channel` required. This step will fail if there are existing NULL values in that column.
|
|
|
|
*/
|
|
-- DropForeignKey
|
|
ALTER TABLE "Channel" DROP CONSTRAINT "Channel_communityId_fkey";
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Channel" ALTER COLUMN "communityId" SET NOT NULL;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "Channel" ADD CONSTRAINT "Channel_communityId_fkey" FOREIGN KEY ("communityId") REFERENCES "Community"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
|