db_type(connection) [source] Returns the database column data type for the Field
class BinaryField(**options) [source] A field to store raw binary data. It only supports
Field.verbose_name A human-readable name for the field. If the verbose name isn’t given, Django will automatically create it
class PositiveIntegerField(**options) [source] Like an IntegerField, but must
Field.many_to_one Boolean flag that is True if the field has a many-to-one relation, such as a ForeignKey;
FilePathField.allow_folders Optional. Either True or False. Default is False. Specifies
Field.related_model Points to the model the field relates to. For example, Author in ForeignKey(Author, on_delete=models
PROTECT [source] Prevent deletion of the referenced object by raising ProtectedError
Field.default The default value for the field. This can be a value or a callable object. If callable it will be called every
class ManyToManyField(othermodel, **options) [source] A many-to-many relationship. Requires
Page 8 of 12