33 lines
2.2 KiB
SQL
33 lines
2.2 KiB
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `businessTypeEN` on the `CustomerBranch` table. All the data in the column will be lost.
|
|
- You are about to drop the column `jobPositionEN` on the `CustomerBranch` table. All the data in the column will be lost.
|
|
- You are about to drop the column `saleEmployee` on the `CustomerBranch` table. All the data in the column will be lost.
|
|
- You are about to drop the column `workplace` on the `CustomerBranch` table. All the data in the column will be lost.
|
|
- You are about to drop the column `workplaceEN` on the `CustomerBranch` table. All the data in the column will be lost.
|
|
- Added the required column `agent` to the `CustomerBranch` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `contactTel` to the `CustomerBranch` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `employmentOfficeEN` to the `CustomerBranch` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `homeCode` to the `CustomerBranch` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `officeTel` to the `CustomerBranch` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `payDateEN` to the `CustomerBranch` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `wageRateText` to the `CustomerBranch` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "CustomerBranch" DROP COLUMN "businessTypeEN",
|
|
DROP COLUMN "jobPositionEN",
|
|
DROP COLUMN "saleEmployee",
|
|
DROP COLUMN "workplace",
|
|
DROP COLUMN "workplaceEN",
|
|
ADD COLUMN "agent" TEXT NOT NULL,
|
|
ADD COLUMN "authorizedName" TEXT,
|
|
ADD COLUMN "authorizedNameEN" TEXT,
|
|
ADD COLUMN "contactTel" TEXT NOT NULL,
|
|
ADD COLUMN "employmentOfficeEN" TEXT NOT NULL,
|
|
ADD COLUMN "homeCode" TEXT NOT NULL,
|
|
ADD COLUMN "officeTel" TEXT NOT NULL,
|
|
ADD COLUMN "payDateEN" TEXT NOT NULL,
|
|
ADD COLUMN "wageRateText" TEXT NOT NULL,
|
|
ALTER COLUMN "payDate" SET DATA TYPE TEXT;
|