-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: implement stock apis * feat: test stock Service * feat: test menu apis * fix: preOrder list default date
- Loading branch information
Showing
15 changed files
with
1,231 additions
and
233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
Warnings: | ||
- You are about to drop the column `storeId` on the `Mixing` table. All the data in the column will be lost. | ||
- You are about to drop the column `storeId` on the `Recipe` table. All the data in the column will be lost. | ||
*/ | ||
-- DropForeignKey | ||
ALTER TABLE `Mixing` DROP FOREIGN KEY `Mixing_storeId_fkey`; | ||
|
||
-- DropForeignKey | ||
ALTER TABLE `Recipe` DROP FOREIGN KEY `Recipe_storeId_fkey`; | ||
|
||
-- AlterTable | ||
ALTER TABLE `Mixing` DROP COLUMN `storeId`; | ||
|
||
-- AlterTable | ||
ALTER TABLE `Recipe` DROP COLUMN `storeId`; | ||
|
||
-- AlterTable | ||
ALTER TABLE `Stock` ADD COLUMN `currentAmount` INTEGER NOT NULL DEFAULT 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.