14 lines
441 B
SQL
14 lines
441 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `termsAndConditions` on the `PurchaseOrder` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "PurchaseOrder" DROP COLUMN "termsAndConditions",
|
|
ADD COLUMN "tcDelivery" TEXT,
|
|
ADD COLUMN "tcDispatch" TEXT,
|
|
ADD COLUMN "tcInspection" TEXT,
|
|
ADD COLUMN "tcOthers" TEXT,
|
|
ADD COLUMN "tcPaymentTerms" TEXT,
|
|
ADD COLUMN "tcTransitInsurance" TEXT;
|