| Total Complexity | 2 |
| Total Lines | 8 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | import { MigrationInterface, QueryRunner } from "typeorm" |
||
| 2 | |||
| 3 | export class RemoveContacts1687959453344 implements MigrationInterface { |
||
| 4 | |||
| 5 | public async up(queryRunner: QueryRunner): Promise<void> { |
||
| 6 | await queryRunner.query(`DROP TABLE "contact"`); |
||
| 7 | } |
||
| 8 | |||
| 9 | public async down(queryRunner: QueryRunner): Promise<void> { |
||
| 10 | // noop |
||
| 14 |