From 5f96541c08d9853fb7f53cd3c563a40077b70912 Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Tue, 3 Dec 2024 13:36:36 +0700 Subject: [PATCH] chore: migration --- .../migration.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 prisma/migrations/20241203063619_add_step_count_field_for_later_use/migration.sql diff --git a/prisma/migrations/20241203063619_add_step_count_field_for_later_use/migration.sql b/prisma/migrations/20241203063619_add_step_count_field_for_later_use/migration.sql new file mode 100644 index 0000000..94b3778 --- /dev/null +++ b/prisma/migrations/20241203063619_add_step_count_field_for_later_use/migration.sql @@ -0,0 +1,2 @@ +-- AlterTable +ALTER TABLE "WorkProduct" ADD COLUMN "stepCount" INTEGER NOT NULL DEFAULT 0;