22 lines
890 B
SQL
22 lines
890 B
SQL
|
|
/*
|
||
|
|
Warnings:
|
||
|
|
|
||
|
|
- You are about to drop the column `expiresAt` on the `Stock_Reservations` table. All the data in the column will be lost.
|
||
|
|
- Added the required column `posAccountId` to the `Orders` table without a default value. This is not possible if the table is not empty.
|
||
|
|
|
||
|
|
*/
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE `Orders` ADD COLUMN `posAccountId` INTEGER NOT NULL;
|
||
|
|
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE `Stock_Reservations` DROP COLUMN `expiresAt`;
|
||
|
|
|
||
|
|
-- CreateIndex
|
||
|
|
CREATE INDEX `Orders_posAccountId_idx` ON `Orders`(`posAccountId`);
|
||
|
|
|
||
|
|
-- AddForeignKey
|
||
|
|
ALTER TABLE `Orders` ADD CONSTRAINT `Orders_posAccountId_fkey` FOREIGN KEY (`posAccountId`) REFERENCES `Pos_Accounts`(`id`) ON DELETE RESTRICT ON UPDATE NO ACTION;
|
||
|
|
|
||
|
|
-- AddForeignKey
|
||
|
|
ALTER TABLE `Stock_Reservations` ADD CONSTRAINT `Stock_Reservations_orderId_fkey` FOREIGN KEY (`orderId`) REFERENCES `Orders`(`id`) ON DELETE CASCADE ON UPDATE CASCADE;
|