Użyj to_field
i db_column
opcje.
class B(models.Model):
name = models.ForeignKey(A, to_field="name", db_column="name")
Po utworzeniu klucza obcego możesz uzyskać dostęp do wartości i powiązanej instancji w następujący sposób:
>>> b = B.objects.get(id=1)
>>> b.name_id # the value stored in the 'name' database column
>>> b.name # the related 'A' instance