12 lines
289 B
SQL
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`;
|