13 lines
403 B
SQL
13 lines
403 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `dayofweek` on the `Location` table. All the data in the column will be lost.
|
|
- Added the required column `date` to the `Shift` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE `Location` DROP COLUMN `dayofweek`;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE `Shift` ADD COLUMN `date` DATETIME(3) NOT NULL;
|