Class OneToOneField

A OneToOneField is essentially the same as a ForeignKey, with the exception

Declaration

class OneToOneField(ForeignKey)
source link

Documentation

that it always carries a "unique" constraint with it and the reverse
relation always returns the object pointed to (since there will only ever
be one), rather than returning a list.

Methods

Inherited methods

Reexports