11 lines
408 B
SQL
11 lines
408 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `communityId` to the `Chunk` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Chunk" ADD COLUMN "communityId" TEXT NOT NULL;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "Chunk" ADD CONSTRAINT "Chunk_communityId_fkey" FOREIGN KEY ("communityId") REFERENCES "Community"("id") ON DELETE CASCADE ON UPDATE CASCADE;
|