From c3d9eeb8f57f29e5e0f5ab0c9668fa4df4b09b08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20De=20Boey?= Date: Fri, 12 Jan 2024 00:56:02 +0100 Subject: [PATCH] fix: add ConvertKit removal migration --- .../20240112001215_remove_convert_kit_usage/migration.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 prisma/migrations/20240112001215_remove_convert_kit_usage/migration.sql diff --git a/prisma/migrations/20240112001215_remove_convert_kit_usage/migration.sql b/prisma/migrations/20240112001215_remove_convert_kit_usage/migration.sql new file mode 100644 index 00000000..c0f6de9e --- /dev/null +++ b/prisma/migrations/20240112001215_remove_convert_kit_usage/migration.sql @@ -0,0 +1,8 @@ +/* + Warnings: + + - You are about to drop the column `convert_kit_id` on the `user` table. All the data in the column will be lost. + +*/ +-- AlterTable +ALTER TABLE "user" DROP COLUMN "convert_kit_id";