mirror of
https://github.com/Kevsl/crypto-exchange-api.git
synced 2025-07-09 06:00:12 +02:00
12 lines
267 B
SQL
12 lines
267 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `id_offer` on the `Trade` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- DropForeignKey
|
|
ALTER TABLE "Trade" DROP CONSTRAINT "Trade_id_offer_fkey";
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Trade" DROP COLUMN "id_offer";
|