2024-02-28 08:32:35 +08:00
|
|
|
import fs from 'node:fs'
|
|
|
|
import path from 'node:path'
|
|
|
|
|
|
|
|
import { MigrationInterface, QueryRunner } from 'typeorm'
|
|
|
|
|
2024-02-28 11:53:50 +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> {
|
|
|
|
await queryRunner.query(sql)
|
|
|
|
}
|
|
|
|
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
|
|
}
|
|
|
|
}
|