import { MigrationInterface, QueryRunner } from "typeorm"; export class UpdateTableDevAddGovernmentEndDate11713334672151 implements MigrationInterface { name = 'UpdateTableDevAddGovernmentEndDate11713334672151' public async up(queryRunner: QueryRunner): Promise { await queryRunner.query(`ALTER TABLE \`developmentScholarship\` DROP COLUMN \`isNoGraduated\``); } public async down(queryRunner: QueryRunner): Promise { await queryRunner.query(`ALTER TABLE \`developmentScholarship\` ADD \`isNoGraduated\` tinyint NOT NULL COMMENT 'เสร็จสิ้นการศึกษาตามที่หลักสูตรกำหนดแล้วแต่ยังไม่สำเร็จการศึกษา' DEFAULT '0'`); } }