12 lines
289 B
MySQL
12 lines
289 B
MySQL
|
|
/*
|
||
|
|
Warnings:
|
||
|
|
|
||
|
|
- You are about to drop the column `customerId` on the `Quotation` table. All the data in the column will be lost.
|
||
|
|
|
||
|
|
*/
|
||
|
|
-- DropForeignKey
|
||
|
|
ALTER TABLE "Quotation" DROP CONSTRAINT "Quotation_customerId_fkey";
|
||
|
|
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE "Quotation" DROP COLUMN "customerId";
|