class Field [source] Field is an abstract class that represents a database table
deconstruct() [source] Returns a 4-tuple with enough information to recreate the field:
FilePathField.allow_files Optional. Either True or False. Default is True. Specifies
class CommaSeparatedIntegerField(max_length=None, **options) [source]
ManyToManyField.db_table The name of the table to create for storing the many-to-many data. If this is not provided, Django
DecimalField.max_digits The maximum number of digits allowed in the number. Note that this number must be greater than or equal
Field.primary_key If True, this field is the primary key for the model. If you
class TextField(**options) [source] A large text field. The default form widget for this
class ForeignKey(othermodel, on_delete, **options) [source] A many-to-one relationship. Requires
class URLField(max_length=200, **options) [source] A CharField for a URL.
Page 10 of 12