jws-backend/prisma/migrations/20240424030115_add_missing_field_en/migration.sql
2024-04-24 10:01:24 +07:00

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;