Files
mwitnessing/prisma/migrations/20240131113517_assignment_isactive_renamed_istetative/migration.sql
Dobromir Popov acd776e988 renames
2024-03-26 01:08:57 +02:00

13 lines
330 B
SQL

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