11 lines
289 B
SQL
11 lines
289 B
SQL
/*
|
|
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";
|