initial commit - code moved to separate repo
This commit is contained in:
12
prisma/migrations/20221203232123_shifts/migration.sql
Normal file
12
prisma/migrations/20221203232123_shifts/migration.sql
Normal file
@ -0,0 +1,12 @@
|
||||
/*
|
||||
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;
|
Reference in New Issue
Block a user