initial commit - code moved to separate repo

This commit is contained in:
Dobromir Popov
2024-02-22 04:19:38 +02:00
commit 560d503219
240 changed files with 105125 additions and 0 deletions

View 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;