hrms-api-org/src/migration/1710399617760-add_column_employeePosLevel-posLevelAuthority.ts

14 lines
827 B
TypeScript

import { MigrationInterface, QueryRunner } from "typeorm";
export class AddColumnEmployeePosLevelPosLevelAuthority1710399617760 implements MigrationInterface {
name = 'AddColumnEmployeePosLevelPosLevelAuthority1710399617760'
public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`ALTER TABLE \`employeePosLevel\` ADD \`posLevelAuthority\` enum ('HEAD', 'DEPUTY', 'GOVERNOR') NULL COMMENT 'ผู้มีอำนาจสั่งบรรจุของระดับนี้ head = หัวหน้าหน่วยงาน , deputy = ปลัด , governor = ผู้ว่าฯ'`);
}
public async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`ALTER TABLE \`employeePosLevel\` DROP COLUMN \`posLevelAuthority\``);
}
}