hippofish/packages/backend/src/migration/1646633030285-chart-federation-active.ts

22 lines
693 B
TypeScript
Raw Normal View History

import { MigrationInterface, QueryRunner } from "typeorm";
2022-03-07 07:10:16 +01:00
export class chartFederationActive1646633030285 implements MigrationInterface {
async up(queryRunner: QueryRunner): Promise<void> {
2023-04-07 03:56:46 +02:00
await queryRunner.query(
`ALTER TABLE "__chart__federation" ADD "___active" smallint NOT NULL DEFAULT '0'`,
);
await queryRunner.query(
`ALTER TABLE "__chart_day__federation" ADD "___active" smallint NOT NULL DEFAULT '0'`,
);
}
2022-03-07 07:10:16 +01:00
async down(queryRunner: QueryRunner): Promise<void> {
2023-04-07 03:56:46 +02:00
await queryRunner.query(
`ALTER TABLE "__chart_day__federation" DROP COLUMN "___active"`,
);
await queryRunner.query(
`ALTER TABLE "__chart__federation" DROP COLUMN "___active"`,
);
}
2022-03-07 07:10:16 +01:00
}