Files
2026-07-13 13:32:57 +08:00

10 lines
234 B
SQL

/*
Warnings:
- You are about to drop the column `finishedAt` on the `Task` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "Task" DROP COLUMN "finishedAt",
ADD COLUMN "completedAt" TIMESTAMP(3);