| Total Complexity | 2 | 
| Total Lines | 9 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | import {MigrationInterface, QueryRunner} from 'typeorm'; | 
            ||
| 2 | |||
| 3 | export class RemoveActivities1587374266182 implements MigrationInterface { | 
            ||
| 4 | name = 'RemoveActivities1587374266182';  | 
            ||
| 5 | |||
| 6 |   public async up(queryRunner: QueryRunner): Promise<any> { | 
            ||
| 7 | await queryRunner.query(`DROP TABLE "activity"`, undefined);  | 
            ||
| 8 | }  | 
            ||
| 9 | |||
| 10 |   public async down(queryRunner: QueryRunner): Promise<any> {} | 
            ||
| 11 | }  | 
            ||
| 12 |