Does Strapi transfer also move data stored in a database?

I’m developing locally using Postgres, while I have another instance of Strapi running in production mode on DigitalOcean. However, when I run yarn strapi transfer --to myproduction-strapi.com/admin, the collection types I created locally are still missing in production, despite the transfer appearing to be successful. Can someone please advise me on what I might be overlooking?

This topic has been created from a Discord post (1216542653701820416) to give it more visibility.
It will be on Read-Only mode here.
Join the conversation on Discord

Have you synced your code changes so both instances have the same schema?
Note that Strapi’s schema is built from the filesystem, so when creating new content types you need to sync those changes with the remote repository/other instances you might have.

Yes, take a look at the recommended development flow code-wise: FAQ | Strapi Documentation