-
-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0d8de60
commit ebd2f98
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
db/migration/1736206740420-UpdateHousekeepingSuggestedReviews2.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { MigrationInterface, QueryRunner } from "typeorm"; | ||
|
||
export class UpdateHousekeepingSuggestedReviews21736206740420 implements MigrationInterface { | ||
|
||
public async up(queryRunner: QueryRunner): Promise<void> { | ||
await queryRunner.query(`-- sql | ||
ALTER TABLE housekeeping_suggested_reviews DROP INDEX objectType; | ||
`) | ||
} | ||
|
||
public async down(): Promise<void> {} | ||
Check warning on line 11 in db/migration/1736206740420-UpdateHousekeepingSuggestedReviews2.ts GitHub Actions / eslint
|
||
|
||
} |