migrate生成

This commit is contained in:
rca 2024-06-17 01:08:55 +09:00
parent 0d11d3621d
commit 33e4a8dd4a

View File

@ -0,0 +1,11 @@
/*
Warnings:
- Added the required column `child_id` to the `Task` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "Task" ADD COLUMN "child_id" TEXT NOT NULL;
-- AddForeignKey
ALTER TABLE "Task" ADD CONSTRAINT "Task_child_id_fkey" FOREIGN KEY ("child_id") REFERENCES "Child"("id") ON DELETE RESTRICT ON UPDATE CASCADE;