-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(#2181) - relations for transaction monitoring
- Loading branch information
Showing
4 changed files
with
37 additions
and
13 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
...e/prisma/migrations/20240311093641_fix_relations_for_transaction_monitoring/migration.sql
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,22 @@ | ||
/* | ||
Warnings: | ||
- You are about to drop the column `businessId` on the `Alert` table. All the data in the column will be lost. | ||
- You are about to drop the column `endUserId` on the `Alert` table. All the data in the column will be lost. | ||
*/ | ||
-- DropForeignKey | ||
ALTER TABLE "Alert" DROP CONSTRAINT "Alert_businessId_fkey"; | ||
|
||
-- DropForeignKey | ||
ALTER TABLE "Alert" DROP CONSTRAINT "Alert_endUserId_fkey"; | ||
|
||
-- DropIndex | ||
DROP INDEX "Alert_businessId_idx"; | ||
|
||
-- DropIndex | ||
DROP INDEX "Alert_endUserId_idx"; | ||
|
||
-- AlterTable | ||
ALTER TABLE "Alert" DROP COLUMN "businessId", | ||
DROP COLUMN "endUserId"; |
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
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