fix: Fix grammar error in no migrations found log (#9754)

This commit is contained in:
Josh Heng 2023-02-05 08:31:28 +00:00 committed by GitHub
parent 63ab05fca1
commit 6fb212187f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -409,7 +409,7 @@ export class MigrationExecutor {
// if no migrations found in the database then nothing to revert
if (!lastTimeExecutedMigration) {
this.connection.logger.logSchemaBuild(
`No migrations was found in the database. Nothing to revert!`,
`No migrations were found in the database. Nothing to revert!`,
)
return
}