13 lines
427 B
SQL
13 lines
427 B
SQL
/*
|
|
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;
|