diff --git a/tutorials/migrate-databases-instance/index.mdx b/tutorials/migrate-databases-instance/index.mdx
index 305d1ffc53..f4d34bf382 100644
--- a/tutorials/migrate-databases-instance/index.mdx
+++ b/tutorials/migrate-databases-instance/index.mdx
@@ -58,10 +58,13 @@ This guide consists of two parts, depending on which database Engine your Instan
```
apt update && apt upgrade -y
```
-3. We use `pg_dump` to dump the content of the database to migrate. It is included in the package `postgresql-client-common`. Install it using apt:
+3. We use `pg_dump` to dump the content of the database to migrate. It is included in the package `postgresql-client-16`. Install it using apt:
```
apt install postgresql-client-16
```
+
+ Ensure to use the latest version of the `postgresql-client` package when installing it. You can list all available versions of the package using the following command `apt list -a postgresql-client-*`
+
4. Dump the content of the originating database into a local SQL file on the Instance:
```
pg_dump --host= --port= --username= --dbname= --file=.sql