We have a PostgreSQL production server and many workstations with isolated development environments. Each of them has its own local PostgreSQL server (without replication with the production server). Developers should periodically receive updates stored on the server.
I am trying to figure out how to dump the contents of several selected tables from the server in order to update tables on development workstations. The biggest problem is that the tables I'm trying to synchronize may diverge (developers can add but not delete - new fields in the tables through Django ORM, and the production database schema remains unchanged for a long time).

, , .
, (, pg_dump -U remote_user -h remote_server -t table_to_copy source_db | psql target_db) .
UPD. , () .