54 lines
2.1 KiB
TypeScript
54 lines
2.1 KiB
TypeScript
|
import { MigrationInterface, QueryRunner, Table } from "typeorm";
|
||
|
import BackupHelper from "../helpers/backupHelper";
|
||
|
import { getTypeByORM } from "../data-source";
|
||
|
import InternalException from "../exceptions/internalException";
|
||
|
|
||
|
export class BackupAndResetDatabase1738166124200 implements MigrationInterface {
|
||
|
name = "BackupAndResetDatabase1738166124200";
|
||
|
|
||
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
||
|
if ((await queryRunner.hasTable("user")) && !(await queryRunner.hasTable("salutation")))
|
||
|
throw new InternalException("Cannot update due to skiped version, resulting in data loss");
|
||
|
|
||
|
if (await queryRunner.hasTable("user"))
|
||
|
await BackupHelper.createBackup({ filename: "schema change", path: "migration", collectIds: false });
|
||
|
|
||
|
await queryRunner.clearDatabase();
|
||
|
|
||
|
await queryRunner.createTable(
|
||
|
new Table({
|
||
|
name: "migrations",
|
||
|
columns: [
|
||
|
{
|
||
|
name: "id",
|
||
|
type: getTypeByORM("int"),
|
||
|
isPrimary: true,
|
||
|
isGenerated: true,
|
||
|
generationStrategy: "increment",
|
||
|
},
|
||
|
{ name: "timestamp", type: getTypeByORM("bigint"), isNullable: false },
|
||
|
{ name: "name", type: getTypeByORM("varchar"), length: "255", isNullable: false },
|
||
|
],
|
||
|
}),
|
||
|
true
|
||
|
);
|
||
|
|
||
|
await queryRunner.createTable(
|
||
|
new Table({
|
||
|
name: "typeorm_metadata",
|
||
|
columns: [
|
||
|
{ name: "type", type: getTypeByORM("varchar"), length: "255", isNullable: false },
|
||
|
{ name: "database", type: getTypeByORM("varchar"), length: "255", isNullable: true, default: null },
|
||
|
{ name: "schema", type: getTypeByORM("varchar"), length: "255", isNullable: true, default: null },
|
||
|
{ name: "table", type: getTypeByORM("varchar"), length: "255", isNullable: true, default: null },
|
||
|
{ name: "name", type: getTypeByORM("varchar"), length: "255", isNullable: true, default: null },
|
||
|
{ name: "value", type: getTypeByORM("text"), length: "255", isNullable: true, default: null },
|
||
|
],
|
||
|
}),
|
||
|
true
|
||
|
);
|
||
|
}
|
||
|
|
||
|
public async down(queryRunner: QueryRunner): Promise<void> {}
|
||
|
}
|