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

12 lines
289 B
SQL

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