10 lines
230 B
SQL
10 lines
230 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `contactUrl` on the `Vendor` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Vendor" DROP COLUMN "contactUrl",
|
|
ADD COLUMN "contractUrl" TEXT;
|