diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go
index daea47d342..1c8563cebe 100644
--- a/models/migrations/migrations.go
+++ b/models/migrations/migrations.go
@@ -602,7 +602,7 @@ func EnsureUpToDate(x *xorm.Engine) error {
 	expected := ExpectedVersion()
 
 	if currentDB != expected {
-		return fmt.Errorf(`Current database version %d is not equal to the expected version %d. Please run "gitea [--config /path/to/app.ini] migrate" to update the database version`, currentDB, expected)
+		return fmt.Errorf(`Current database version %d is not equal to the expected version %d. Please run "forgejo [--config /path/to/app.ini] migrate" to update the database version`, currentDB, expected)
 	}
 
 	return forgejo_migrations.EnsureUpToDate(x)
diff --git a/routers/common/db.go b/routers/common/db.go
index a67c9582fa..d7dcfa0122 100644
--- a/routers/common/db.go
+++ b/routers/common/db.go
@@ -53,7 +53,7 @@ func migrateWithSetting(x *xorm.Engine) error {
 		return migrations.Migrate(x)
 	} else if expected := migrations.ExpectedVersion(); current != expected {
 		log.Fatal(`"database.AUTO_MIGRATION" is disabled, but current database version %d is not equal to the expected version %d.`+
-			`You can set "database.AUTO_MIGRATION" to true or migrate manually by running "gitea [--config /path/to/app.ini] migrate"`, current, expected)
+			`You can set "database.AUTO_MIGRATION" to true or migrate manually by running "forgejo [--config /path/to/app.ini] migrate"`, current, expected)
 	}
 	return nil
 }