diff --git a/src/migrations/1544877081073-CreateSlowmodeTables.ts b/src/migrations/1544877081073-CreateSlowmodeTables.ts index 59ac9596..4fb944d8 100644 --- a/src/migrations/1544877081073-CreateSlowmodeTables.ts +++ b/src/migrations/1544877081073-CreateSlowmodeTables.ts @@ -62,6 +62,9 @@ export class CreateSlowmodeTables1544877081073 implements MigrationInterface { } public async down(queryRunner: QueryRunner): Promise { - await Promise.all([queryRunner.dropTable("slowmode_channels"), queryRunner.dropTable("slowmode_users")]); + await Promise.all([ + queryRunner.dropTable("slowmode_channels", true), + queryRunner.dropTable("slowmode_users", true) + ]); } }