localhost_oa_based/src/migrations/1707996695540-initData.ts

15 lines
439 B
TypeScript
Raw Normal View History

2024-02-28 17:02:46 +08:00
import fs from 'node:fs';
import path from 'node:path';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { MigrationInterface, QueryRunner } from 'typeorm';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
const sql = fs.readFileSync(path.join(__dirname, '../../deploy/sql/hxoa.sql'), 'utf8');
2024-02-28 08:32:35 +08:00
export class InitData1707996695540 implements MigrationInterface {
public async up(queryRunner: QueryRunner): Promise<void> {
2024-02-28 17:02:46 +08:00
await queryRunner.query(sql);
2024-02-28 08:32:35 +08:00
}
2024-02-28 17:02:46 +08:00
public async down(queryRunner: QueryRunner): Promise<void> {}
2024-02-28 08:32:35 +08:00
}