Skip to content

Commit

Permalink
fix: eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-michelet committed Sep 21, 2024
1 parent 992977f commit cf526c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scripts/migrate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async function doMigration (): Promise<void> {

await postgrator.migrate()

console.log("Migration completed!")
console.log('Migration completed!')

await new Promise<void>((resolve, reject) => {
connection.end((err: unknown) => {
Expand All @@ -44,4 +44,4 @@ async function doMigration (): Promise<void> {
}

doMigration()
.catch(err => console.error(err))
.catch(err => console.error(err))

0 comments on commit cf526c0

Please sign in to comment.