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;