Files
portabase/prisma/migrations/20241217192704_2024_12_17/migration.sql
T
2024-12-17 20:32:29 +01:00

10 lines
260 B
SQL

/*
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;