From 05edbf4a42c0da81882260b189f76f6ccaa4645b Mon Sep 17 00:00:00 2001 From: killian-larcher Date: Tue, 17 Dec 2024 20:32:29 +0100 Subject: [PATCH] adding zenstack. --- .../migrations/20241217192704_2024_12_17/migration.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 prisma/migrations/20241217192704_2024_12_17/migration.sql diff --git a/prisma/migrations/20241217192704_2024_12_17/migration.sql b/prisma/migrations/20241217192704_2024_12_17/migration.sql new file mode 100644 index 00000000..2c3da29f --- /dev/null +++ b/prisma/migrations/20241217192704_2024_12_17/migration.sql @@ -0,0 +1,9 @@ +/* + Warnings: + + - You are about to drop the column `isArchived` on the `projects` table. All the data in the column will be lost. + +*/ +-- AlterTable +ALTER TABLE "projects" DROP COLUMN "isArchived", +ADD COLUMN "is_archived" BOOLEAN NOT NULL DEFAULT false;