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:
DO_NOTHING [source] Take no action. If your database backend enforces referential integrity
DateField.auto_now Automatically set the field to now every time the object is saved. Useful for “last-modified” timestamps
class URLField(max_length=200, **options) [source] A CharField for a URL.
Field.validators A list of validators to run for this field. See the validators documentation for more
class EmailField(max_length=254, **options) [source] A CharField that checks
class AutoField(**options) [source] An IntegerField that automatically increments
DecimalField.max_digits The maximum number of digits allowed in the number. Note that this number must be greater than or equal
Field.db_column The name of the database column to use for this field. If this isn’t given, Django will use the field’s name
Page 10 of 12