Files
mwitnessing/prisma/migrations/20221218164950_fix_name/migration.sql
2024-02-22 04:19:38 +02:00

10 lines
264 B
SQL

/*
Warnings:
- You are about to drop the column `isTentaive` on the `Assignment` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE `Assignment` DROP COLUMN `isTentaive`,
ADD COLUMN `isTentative` BOOLEAN NOT NULL DEFAULT false;