sort education profile

This commit is contained in:
kittapath 2025-01-06 17:19:14 +07:00
parent f1fb0665c7
commit c7d7732fb6
6 changed files with 214 additions and 5 deletions

View file

@ -0,0 +1,14 @@
import { MigrationInterface, QueryRunner } from "typeorm";
export class UpdateTableProfileEduAddLevel1736158197838 implements MigrationInterface {
name = 'UpdateTableProfileEduAddLevel1736158197838'
public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`ALTER TABLE \`profileEducation\` ADD \`level\` int NULL COMMENT 'ลำดับชั้นของเครื่องราช เอาไว้ตรวจสอบเวลาขอว่าต้องได้ชั้นที่สูงกว่าที่เคยได้รับแล้วเท่านั้น'`);
}
public async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`ALTER TABLE \`profileEducation\` DROP COLUMN \`level\``);
}
}