chore: add migration
This commit is contained in:
parent
7627b51a25
commit
1e8ef2114c
2 changed files with 12 additions and 0 deletions
|
|
@ -0,0 +1,10 @@
|
||||||
|
/*
|
||||||
|
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;
|
||||||
|
|
@ -382,7 +382,9 @@ model CustomerBranch {
|
||||||
|
|
||||||
employmentOffice String
|
employmentOffice String
|
||||||
bussinessType String
|
bussinessType String
|
||||||
|
bussinessTypeEN String
|
||||||
jobPosition String
|
jobPosition String
|
||||||
|
jobPositionEN String
|
||||||
jobDescription String
|
jobDescription String
|
||||||
saleEmployee String
|
saleEmployee String
|
||||||
payDate String
|
payDate String
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue