13 lines
330 B
SQL
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;
|