14 lines
427 B
MySQL
14 lines
427 B
MySQL
|
|
/*
|
||
|
|
Warnings:
|
||
|
|
|
||
|
|
- You are about to drop the column `code` on the `Customer` table. All the data in the column will be lost.
|
||
|
|
- You are about to drop the column `legalPersonName` on the `CustomerBranch` table. All the data in the column will be lost.
|
||
|
|
|
||
|
|
*/
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE "Customer" DROP COLUMN "code";
|
||
|
|
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE "CustomerBranch" DROP COLUMN "legalPersonName",
|
||
|
|
ADD COLUMN "registerNameEN" TEXT;
|