22 lines
1.0 KiB
SQL
22 lines
1.0 KiB
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `city` on the `Vendor` table. All the data in the column will be lost.
|
|
- You are about to drop the column `country` on the `Vendor` table. All the data in the column will be lost.
|
|
- You are about to drop the column `postalCode` on the `Vendor` table. All the data in the column will be lost.
|
|
- You are about to drop the column `state` on the `Vendor` table. All the data in the column will be lost.
|
|
- You are about to drop the column `street` on the `Vendor` table. All the data in the column will be lost.
|
|
- Added the required column `addressId` to the `Vendor` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Vendor" DROP COLUMN "city",
|
|
DROP COLUMN "country",
|
|
DROP COLUMN "postalCode",
|
|
DROP COLUMN "state",
|
|
DROP COLUMN "street",
|
|
ADD COLUMN "addressId" TEXT NOT NULL;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "Vendor" ADD CONSTRAINT "Vendor_addressId_fkey" FOREIGN KEY ("addressId") REFERENCES "Address"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
|