10 lines
457 B
SQL
10 lines
457 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `bussinessTypeEN` to the `CustomerBranch` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `jobPositionEN` to the `CustomerBranch` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "CustomerBranch" ADD COLUMN "bussinessTypeEN" TEXT NOT NULL,
|
|
ADD COLUMN "jobPositionEN" TEXT NOT NULL;
|