10 lines
264 B
SQL
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;
|