From 4ec6da761053101ed25efed85e934c2e5b23bf89 Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Mon, 2 Dec 2024 11:44:08 +0700 Subject: [PATCH] chore: migration --- .../20241202044358_remove_unuse_field/migration.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 prisma/migrations/20241202044358_remove_unuse_field/migration.sql diff --git a/prisma/migrations/20241202044358_remove_unuse_field/migration.sql b/prisma/migrations/20241202044358_remove_unuse_field/migration.sql new file mode 100644 index 0000000..e7f3814 --- /dev/null +++ b/prisma/migrations/20241202044358_remove_unuse_field/migration.sql @@ -0,0 +1,8 @@ +/* + Warnings: + + - You are about to drop the column `documentReceivePoint` on the `Quotation` table. All the data in the column will be lost. + +*/ +-- AlterTable +ALTER TABLE "Quotation" DROP COLUMN "documentReceivePoint";