1
0
This repository has been archived on 2024-11-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
arduino-parts-inventory/api/db/migrations/20231107165858_del/migration.sql
2023-11-14 18:54:44 -05:00

25 lines
670 B
SQL

/*
Warnings:
- You are about to drop the `PartTransaction` table. If the table is not empty, all the data it contains will be lost.
- You are about to drop the `Transaction` table. If the table is not empty, all the data it contains will be lost.
*/
-- DropForeignKey
ALTER TABLE "PartTransaction" DROP CONSTRAINT "PartTransaction_partId_fkey";
-- DropForeignKey
ALTER TABLE "PartTransaction" DROP CONSTRAINT "PartTransaction_transactionId_fkey";
-- DropForeignKey
ALTER TABLE "Transaction" DROP CONSTRAINT "Transaction_userId_fkey";
-- DropTable
DROP TABLE "PartTransaction";
-- DropTable
DROP TABLE "Transaction";
-- DropEnum
DROP TYPE "TransactionType";