fields.txt 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544
  1. =====================
  2. Model field reference
  3. =====================
  4. .. module:: django.db.models.fields
  5. :synopsis: Built-in field types.
  6. .. currentmodule:: django.db.models
  7. This document contains all the API references of :class:`Field` including the
  8. `field options`_ and `field types`_ Django offers.
  9. .. seealso::
  10. If the built-in fields don't do the trick, you can try `django-localflavor
  11. <https://github.com/django/django-localflavor>`_ (`documentation
  12. <https://django-localflavor.readthedocs.io/>`_), which contains assorted
  13. pieces of code that are useful for particular countries and cultures.
  14. Also, you can easily :doc:`write your own custom model fields
  15. </howto/custom-model-fields>`.
  16. .. note::
  17. Technically, these models are defined in :mod:`django.db.models.fields`, but
  18. for convenience they're imported into :mod:`django.db.models`; the standard
  19. convention is to use ``from django.db import models`` and refer to fields as
  20. ``models.<Foo>Field``.
  21. .. _common-model-field-options:
  22. Field options
  23. =============
  24. The following arguments are available to all field types. All are optional.
  25. ``null``
  26. --------
  27. .. attribute:: Field.null
  28. If ``True``, Django will store empty values as ``NULL`` in the database. Default
  29. is ``False``.
  30. Avoid using :attr:`~Field.null` on string-based fields such as
  31. :class:`CharField` and :class:`TextField`. If a string-based field has
  32. ``null=True``, that means it has two possible values for "no data": ``NULL``,
  33. and the empty string. In most cases, it's redundant to have two possible values
  34. for "no data;" the Django convention is to use the empty string, not
  35. ``NULL``. One exception is when a :class:`CharField` has both ``unique=True``
  36. and ``blank=True`` set. In this situation, ``null=True`` is required to avoid
  37. unique constraint violations when saving multiple objects with blank values.
  38. For both string-based and non-string-based fields, you will also need to
  39. set ``blank=True`` if you wish to permit empty values in forms, as the
  40. :attr:`~Field.null` parameter only affects database storage
  41. (see :attr:`~Field.blank`).
  42. .. note::
  43. When using the Oracle database backend, the value ``NULL`` will be stored to
  44. denote the empty string regardless of this attribute.
  45. ``blank``
  46. ---------
  47. .. attribute:: Field.blank
  48. If ``True``, the field is allowed to be blank. Default is ``False``.
  49. Note that this is different than :attr:`~Field.null`. :attr:`~Field.null` is
  50. purely database-related, whereas :attr:`~Field.blank` is validation-related. If
  51. a field has ``blank=True``, form validation will allow entry of an empty value.
  52. If a field has ``blank=False``, the field will be required.
  53. .. admonition:: Supplying missing values
  54. ``blank=True`` can be used with fields having ``null=False``, but this will
  55. require implementing :meth:`~django.db.models.Model.clean` on the model in
  56. order to programmatically supply any missing values.
  57. .. _field-choices:
  58. ``choices``
  59. -----------
  60. .. attribute:: Field.choices
  61. A mapping or iterable in the format described below to use as choices for this
  62. field. If choices are given, they're enforced by
  63. :ref:`model validation <validating-objects>` and the default form widget will
  64. be a select box with these choices instead of the standard text field.
  65. If a mapping is given, the key element is the actual value to be set on the
  66. model, and the second element is the human readable name. For example::
  67. YEAR_IN_SCHOOL_CHOICES = {
  68. "FR": "Freshman",
  69. "SO": "Sophomore",
  70. "JR": "Junior",
  71. "SR": "Senior",
  72. "GR": "Graduate",
  73. }
  74. You can also pass a :term:`sequence` consisting itself of iterables of exactly
  75. two items (e.g. ``[(A1, B1), (A2, B2), …]``). The first element in each tuple
  76. is the actual value to be set on the model, and the second element is the
  77. human-readable name. For example::
  78. YEAR_IN_SCHOOL_CHOICES = [
  79. ("FR", "Freshman"),
  80. ("SO", "Sophomore"),
  81. ("JR", "Junior"),
  82. ("SR", "Senior"),
  83. ("GR", "Graduate"),
  84. ]
  85. ``choices`` can also be defined as a callable that expects no arguments and
  86. returns any of the formats described above. For example::
  87. def get_currencies():
  88. return {i: i for i in settings.CURRENCIES}
  89. class Expense(models.Model):
  90. amount = models.DecimalField(max_digits=10, decimal_places=2)
  91. currency = models.CharField(max_length=3, choices=get_currencies)
  92. Passing a callable for ``choices`` can be particularly handy when, for example,
  93. the choices are:
  94. * the result of I/O-bound operations (which could potentially be cached), such
  95. as querying a table in the same or an external database, or accessing the
  96. choices from a static file.
  97. * a list that is mostly stable but could vary from time to time or from
  98. project to project. Examples in this category are using third-party apps that
  99. provide a well-known inventory of values, such as currencies, countries,
  100. languages, time zones, etc.
  101. .. versionchanged:: 5.0
  102. Support for mappings and callables was added.
  103. Generally, it's best to define choices inside a model class, and to
  104. define a suitably-named constant for each value::
  105. from django.db import models
  106. class Student(models.Model):
  107. FRESHMAN = "FR"
  108. SOPHOMORE = "SO"
  109. JUNIOR = "JR"
  110. SENIOR = "SR"
  111. GRADUATE = "GR"
  112. YEAR_IN_SCHOOL_CHOICES = {
  113. FRESHMAN: "Freshman",
  114. SOPHOMORE: "Sophomore",
  115. JUNIOR: "Junior",
  116. SENIOR: "Senior",
  117. GRADUATE: "Graduate",
  118. }
  119. year_in_school = models.CharField(
  120. max_length=2,
  121. choices=YEAR_IN_SCHOOL_CHOICES,
  122. default=FRESHMAN,
  123. )
  124. def is_upperclass(self):
  125. return self.year_in_school in {self.JUNIOR, self.SENIOR}
  126. Though you can define a choices list outside of a model class and then
  127. refer to it, defining the choices and names for each choice inside the
  128. model class keeps all of that information with the class that uses it,
  129. and helps reference the choices (e.g, ``Student.SOPHOMORE``
  130. will work anywhere that the ``Student`` model has been imported).
  131. .. _field-choices-named-groups:
  132. You can also collect your available choices into named groups that can
  133. be used for organizational purposes::
  134. MEDIA_CHOICES = {
  135. "Audio": {
  136. "vinyl": "Vinyl",
  137. "cd": "CD",
  138. },
  139. "Video": {
  140. "vhs": "VHS Tape",
  141. "dvd": "DVD",
  142. },
  143. "unknown": "Unknown",
  144. }
  145. The key of the mapping is the name to apply to the group and the value is the
  146. choices inside that group, consisting of the field value and a human-readable
  147. name for an option. Grouped options may be combined with ungrouped options
  148. within a single mapping (such as the ``"unknown"`` option in this example).
  149. You can also use a sequence, e.g. a list of 2-tuples::
  150. MEDIA_CHOICES = [
  151. (
  152. "Audio",
  153. (
  154. ("vinyl", "Vinyl"),
  155. ("cd", "CD"),
  156. ),
  157. ),
  158. (
  159. "Video",
  160. (
  161. ("vhs", "VHS Tape"),
  162. ("dvd", "DVD"),
  163. ),
  164. ),
  165. ("unknown", "Unknown"),
  166. ]
  167. Note that choices can be any sequence object -- not necessarily a list or
  168. tuple. This lets you construct choices dynamically. But if you find yourself
  169. hacking :attr:`~Field.choices` to be dynamic, you're probably better off using
  170. a proper database table with a :class:`ForeignKey`. :attr:`~Field.choices` is
  171. meant for static data that doesn't change much, if ever.
  172. .. note::
  173. A new migration is created each time the order of ``choices`` changes.
  174. For each model field that has :attr:`~Field.choices` set, Django will normalize
  175. the choices to a list of 2-tuples and add a method to retrieve the
  176. human-readable name for the field's current value. See
  177. :meth:`~django.db.models.Model.get_FOO_display` in the database API
  178. documentation.
  179. .. _field-choices-blank-label:
  180. Unless :attr:`blank=False<Field.blank>` is set on the field along with a
  181. :attr:`~Field.default` then a label containing ``"---------"`` will be rendered
  182. with the select box. To override this behavior, add a tuple to ``choices``
  183. containing ``None``; e.g. ``(None, 'Your String For Display')``.
  184. Alternatively, you can use an empty string instead of ``None`` where this makes
  185. sense - such as on a :class:`~django.db.models.CharField`.
  186. .. _field-choices-enum-types:
  187. Enumeration types
  188. ~~~~~~~~~~~~~~~~~
  189. In addition, Django provides enumeration types that you can subclass to define
  190. choices in a concise way::
  191. from django.utils.translation import gettext_lazy as _
  192. class Student(models.Model):
  193. class YearInSchool(models.TextChoices):
  194. FRESHMAN = "FR", _("Freshman")
  195. SOPHOMORE = "SO", _("Sophomore")
  196. JUNIOR = "JR", _("Junior")
  197. SENIOR = "SR", _("Senior")
  198. GRADUATE = "GR", _("Graduate")
  199. year_in_school = models.CharField(
  200. max_length=2,
  201. choices=YearInSchool,
  202. default=YearInSchool.FRESHMAN,
  203. )
  204. def is_upperclass(self):
  205. return self.year_in_school in {
  206. self.YearInSchool.JUNIOR,
  207. self.YearInSchool.SENIOR,
  208. }
  209. These work similar to :mod:`enum` from Python's standard library, but with some
  210. modifications:
  211. * Enum member values are a tuple of arguments to use when constructing the
  212. concrete data type. Django supports adding an extra string value to the end
  213. of this tuple to be used as the human-readable name, or ``label``. The
  214. ``label`` can be a lazy translatable string. Thus, in most cases, the member
  215. value will be a ``(value, label)`` 2-tuple. See below for :ref:`an example
  216. of subclassing choices <field-choices-enum-subclassing>` using a more complex
  217. data type. If a tuple is not provided, or the last item is not a (lazy)
  218. string, the ``label`` is :ref:`automatically generated
  219. <field-choices-enum-auto-label>` from the member name.
  220. * A ``.label`` property is added on values, to return the human-readable name.
  221. * A number of custom properties are added to the enumeration classes --
  222. ``.choices``, ``.labels``, ``.values``, and ``.names`` -- to make it easier
  223. to access lists of those separate parts of the enumeration.
  224. .. warning::
  225. These property names cannot be used as member names as they would conflict.
  226. * The use of :func:`enum.unique()` is enforced to ensure that values cannot be
  227. defined multiple times. This is unlikely to be expected in choices for a
  228. field.
  229. Note that using ``YearInSchool.SENIOR``, ``YearInSchool['SENIOR']``, or
  230. ``YearInSchool('SR')`` to access or lookup enum members work as expected, as do
  231. the ``.name`` and ``.value`` properties on the members.
  232. .. _field-choices-enum-auto-label:
  233. If you don't need to have the human-readable names translated, you can have
  234. them inferred from the member name (replacing underscores with spaces and using
  235. title-case):
  236. .. code-block:: pycon
  237. >>> class Vehicle(models.TextChoices):
  238. ... CAR = "C"
  239. ... TRUCK = "T"
  240. ... JET_SKI = "J"
  241. ...
  242. >>> Vehicle.JET_SKI.label
  243. 'Jet Ski'
  244. Since the case where the enum values need to be integers is extremely common,
  245. Django provides an ``IntegerChoices`` class. For example::
  246. class Card(models.Model):
  247. class Suit(models.IntegerChoices):
  248. DIAMOND = 1
  249. SPADE = 2
  250. HEART = 3
  251. CLUB = 4
  252. suit = models.IntegerField(choices=Suit)
  253. It is also possible to make use of the `Enum Functional API
  254. <https://docs.python.org/3/howto/enum.html#functional-api>`_ with the caveat
  255. that labels are automatically generated as highlighted above:
  256. .. code-block:: pycon
  257. >>> MedalType = models.TextChoices("MedalType", "GOLD SILVER BRONZE")
  258. >>> MedalType.choices
  259. [('GOLD', 'Gold'), ('SILVER', 'Silver'), ('BRONZE', 'Bronze')]
  260. >>> Place = models.IntegerChoices("Place", "FIRST SECOND THIRD")
  261. >>> Place.choices
  262. [(1, 'First'), (2, 'Second'), (3, 'Third')]
  263. .. _field-choices-enum-subclassing:
  264. If you require support for a concrete data type other than ``int`` or ``str``,
  265. you can subclass ``Choices`` and the required concrete data type, e.g.
  266. :class:`~datetime.date` for use with :class:`~django.db.models.DateField`::
  267. class MoonLandings(datetime.date, models.Choices):
  268. APOLLO_11 = 1969, 7, 20, "Apollo 11 (Eagle)"
  269. APOLLO_12 = 1969, 11, 19, "Apollo 12 (Intrepid)"
  270. APOLLO_14 = 1971, 2, 5, "Apollo 14 (Antares)"
  271. APOLLO_15 = 1971, 7, 30, "Apollo 15 (Falcon)"
  272. APOLLO_16 = 1972, 4, 21, "Apollo 16 (Orion)"
  273. APOLLO_17 = 1972, 12, 11, "Apollo 17 (Challenger)"
  274. There are some additional caveats to be aware of:
  275. - Enumeration types do not support :ref:`named groups
  276. <field-choices-named-groups>`.
  277. - Because an enumeration with a concrete data type requires all values to match
  278. the type, overriding the :ref:`blank label <field-choices-blank-label>`
  279. cannot be achieved by creating a member with a value of ``None``. Instead,
  280. set the ``__empty__`` attribute on the class::
  281. class Answer(models.IntegerChoices):
  282. NO = 0, _("No")
  283. YES = 1, _("Yes")
  284. __empty__ = _("(Unknown)")
  285. .. versionchanged:: 5.0
  286. Support for using enumeration types directly in the ``choices`` was added.
  287. ``db_column``
  288. -------------
  289. .. attribute:: Field.db_column
  290. The name of the database column to use for this field. If this isn't given,
  291. Django will use the field's name.
  292. If your database column name is an SQL reserved word, or contains
  293. characters that aren't allowed in Python variable names -- notably, the
  294. hyphen -- that's OK. Django quotes column and table names behind the
  295. scenes.
  296. ``db_comment``
  297. --------------
  298. .. attribute:: Field.db_comment
  299. The comment on the database column to use for this field. It is useful for
  300. documenting fields for individuals with direct database access who may not be
  301. looking at your Django code. For example::
  302. pub_date = models.DateTimeField(
  303. db_comment="Date and time when the article was published",
  304. )
  305. ``db_default``
  306. --------------
  307. .. versionadded:: 5.0
  308. .. attribute:: Field.db_default
  309. The database-computed default value for this field. This can be a literal value
  310. or a database function, such as :class:`~django.db.models.functions.Now`::
  311. created = models.DateTimeField(db_default=Now())
  312. More complex expressions can be used, as long as they are made from literals
  313. and database functions::
  314. month_due = models.DateField(
  315. db_default=TruncMonth(
  316. Now() + timedelta(days=90),
  317. output_field=models.DateField(),
  318. )
  319. )
  320. Database defaults cannot reference other fields or models. For example, this is
  321. invalid::
  322. end = models.IntegerField(db_default=F("start") + 50)
  323. If both ``db_default`` and :attr:`Field.default` are set, ``default`` will take
  324. precedence when creating instances in Python code. ``db_default`` will still be
  325. set at the database level and will be used when inserting rows outside of the
  326. ORM or when adding a new field in a migration.
  327. ``db_index``
  328. ------------
  329. .. attribute:: Field.db_index
  330. If ``True``, a database index will be created for this field.
  331. .. admonition:: Use the :attr:`~Options.indexes` option instead.
  332. Where possible, use the :attr:`Meta.indexes <Options.indexes>` option
  333. instead. In nearly all cases, :attr:`~Options.indexes` provides more
  334. functionality than ``db_index``. ``db_index`` may be deprecated in the
  335. future.
  336. ``db_tablespace``
  337. -----------------
  338. .. attribute:: Field.db_tablespace
  339. The name of the :doc:`database tablespace </topics/db/tablespaces>` to use for
  340. this field's index, if this field is indexed. The default is the project's
  341. :setting:`DEFAULT_INDEX_TABLESPACE` setting, if set, or the
  342. :attr:`~Options.db_tablespace` of the model, if any. If the backend doesn't
  343. support tablespaces for indexes, this option is ignored.
  344. ``default``
  345. -----------
  346. .. attribute:: Field.default
  347. The default value for the field. This can be a value or a callable object. If
  348. callable it will be called every time a new object is created.
  349. The default can't be a mutable object (model instance, ``list``, ``set``, etc.),
  350. as a reference to the same instance of that object would be used as the default
  351. value in all new model instances. Instead, wrap the desired default in a
  352. callable. For example, if you want to specify a default ``dict`` for
  353. :class:`~django.db.models.JSONField`, use a function::
  354. def contact_default():
  355. return {"email": "to1@example.com"}
  356. contact_info = JSONField("ContactInfo", default=contact_default)
  357. ``lambda``\s can't be used for field options like ``default`` because they
  358. can't be :ref:`serialized by migrations <migration-serializing>`. See that
  359. documentation for other caveats.
  360. For fields like :class:`ForeignKey` that map to model instances, defaults
  361. should be the value of the field they reference (``pk`` unless
  362. :attr:`~ForeignKey.to_field` is set) instead of model instances.
  363. The default value is used when new model instances are created and a value
  364. isn't provided for the field. When the field is a primary key, the default is
  365. also used when the field is set to ``None``.
  366. The default value can also be set at the database level with
  367. :attr:`Field.db_default`.
  368. ``editable``
  369. ------------
  370. .. attribute:: Field.editable
  371. If ``False``, the field will not be displayed in the admin or any other
  372. :class:`~django.forms.ModelForm`. They are also skipped during :ref:`model
  373. validation <validating-objects>`. Default is ``True``.
  374. ``error_messages``
  375. ------------------
  376. .. attribute:: Field.error_messages
  377. The ``error_messages`` argument lets you override the default messages that the
  378. field will raise. Pass in a dictionary with keys matching the error messages you
  379. want to override.
  380. Error message keys include ``null``, ``blank``, ``invalid``, ``invalid_choice``,
  381. ``unique``, and ``unique_for_date``. Additional error message keys are
  382. specified for each field in the `Field types`_ section below.
  383. These error messages often don't propagate to forms. See
  384. :ref:`considerations-regarding-model-errormessages`.
  385. ``help_text``
  386. -------------
  387. .. attribute:: Field.help_text
  388. Extra "help" text to be displayed with the form widget. It's useful for
  389. documentation even if your field isn't used on a form.
  390. Note that this value is *not* HTML-escaped in automatically-generated
  391. forms. This lets you include HTML in :attr:`~Field.help_text` if you so
  392. desire. For example::
  393. help_text = "Please use the following format: <em>YYYY-MM-DD</em>."
  394. Alternatively you can use plain text and
  395. :func:`django.utils.html.escape` to escape any HTML special characters. Ensure
  396. that you escape any help text that may come from untrusted users to avoid a
  397. cross-site scripting attack.
  398. ``primary_key``
  399. ---------------
  400. .. attribute:: Field.primary_key
  401. If ``True``, this field is the primary key for the model.
  402. If you don't specify ``primary_key=True`` for any field in your model, Django
  403. will automatically add a field to hold the primary key, so you don't need to
  404. set ``primary_key=True`` on any of your fields unless you want to override the
  405. default primary-key behavior. The type of auto-created primary key fields can
  406. be specified per app in :attr:`AppConfig.default_auto_field
  407. <django.apps.AppConfig.default_auto_field>` or globally in the
  408. :setting:`DEFAULT_AUTO_FIELD` setting. For more, see
  409. :ref:`automatic-primary-key-fields`.
  410. ``primary_key=True`` implies :attr:`null=False <Field.null>` and
  411. :attr:`unique=True <Field.unique>`. Only one primary key is allowed on an
  412. object.
  413. The primary key field is read-only. If you change the value of the primary
  414. key on an existing object and then save it, a new object will be created
  415. alongside the old one.
  416. The primary key field is set to ``None`` when
  417. :meth:`deleting <django.db.models.Model.delete>` an object.
  418. ``unique``
  419. ----------
  420. .. attribute:: Field.unique
  421. If ``True``, this field must be unique throughout the table.
  422. This is enforced at the database level and by model validation. If
  423. you try to save a model with a duplicate value in a :attr:`~Field.unique`
  424. field, a :exc:`django.db.IntegrityError` will be raised by the model's
  425. :meth:`~django.db.models.Model.save` method.
  426. This option is valid on all field types except :class:`ManyToManyField` and
  427. :class:`OneToOneField`.
  428. Note that when ``unique`` is ``True``, you don't need to specify
  429. :attr:`~Field.db_index`, because ``unique`` implies the creation of an index.
  430. ``unique_for_date``
  431. -------------------
  432. .. attribute:: Field.unique_for_date
  433. Set this to the name of a :class:`DateField` or :class:`DateTimeField` to
  434. require that this field be unique for the value of the date field.
  435. For example, if you have a field ``title`` that has
  436. ``unique_for_date="pub_date"``, then Django wouldn't allow the entry of two
  437. records with the same ``title`` and ``pub_date``.
  438. Note that if you set this to point to a :class:`DateTimeField`, only the date
  439. portion of the field will be considered. Besides, when :setting:`USE_TZ` is
  440. ``True``, the check will be performed in the :ref:`current time zone
  441. <default-current-time-zone>` at the time the object gets saved.
  442. This is enforced by :meth:`Model.validate_unique()` during model validation
  443. but not at the database level. If any :attr:`~Field.unique_for_date` constraint
  444. involves fields that are not part of a :class:`~django.forms.ModelForm` (for
  445. example, if one of the fields is listed in ``exclude`` or has
  446. :attr:`editable=False<Field.editable>`), :meth:`Model.validate_unique()` will
  447. skip validation for that particular constraint.
  448. ``unique_for_month``
  449. --------------------
  450. .. attribute:: Field.unique_for_month
  451. Like :attr:`~Field.unique_for_date`, but requires the field to be unique with
  452. respect to the month.
  453. ``unique_for_year``
  454. -------------------
  455. .. attribute:: Field.unique_for_year
  456. Like :attr:`~Field.unique_for_date` and :attr:`~Field.unique_for_month`.
  457. ``verbose_name``
  458. ----------------
  459. .. attribute:: Field.verbose_name
  460. A human-readable name for the field. If the verbose name isn't given, Django
  461. will automatically create it using the field's attribute name, converting
  462. underscores to spaces. See :ref:`Verbose field names <verbose-field-names>`.
  463. ``validators``
  464. --------------
  465. .. attribute:: Field.validators
  466. A list of validators to run for this field. See the :doc:`validators
  467. documentation </ref/validators>` for more information.
  468. .. _model-field-types:
  469. Field types
  470. ===========
  471. .. currentmodule:: django.db.models
  472. ``AutoField``
  473. -------------
  474. .. class:: AutoField(**options)
  475. An :class:`IntegerField` that automatically increments
  476. according to available IDs. You usually won't need to use this directly; a
  477. primary key field will automatically be added to your model if you don't specify
  478. otherwise. See :ref:`automatic-primary-key-fields`.
  479. ``BigAutoField``
  480. ----------------
  481. .. class:: BigAutoField(**options)
  482. A 64-bit integer, much like an :class:`AutoField` except that it is
  483. guaranteed to fit numbers from ``1`` to ``9223372036854775807``.
  484. ``BigIntegerField``
  485. -------------------
  486. .. class:: BigIntegerField(**options)
  487. A 64-bit integer, much like an :class:`IntegerField` except that it is
  488. guaranteed to fit numbers from ``-9223372036854775808`` to
  489. ``9223372036854775807``. The default form widget for this field is a
  490. :class:`~django.forms.NumberInput`.
  491. ``BinaryField``
  492. ---------------
  493. .. class:: BinaryField(max_length=None, **options)
  494. A field to store raw binary data. It can be assigned :class:`bytes`,
  495. :class:`bytearray`, or :class:`memoryview`.
  496. By default, ``BinaryField`` sets :attr:`~Field.editable` to ``False``, in which
  497. case it can't be included in a :class:`~django.forms.ModelForm`.
  498. .. attribute:: BinaryField.max_length
  499. Optional. The maximum length (in bytes) of the field. The maximum length is
  500. enforced in Django's validation using
  501. :class:`~django.core.validators.MaxLengthValidator`.
  502. .. admonition:: Abusing ``BinaryField``
  503. Although you might think about storing files in the database, consider that
  504. it is bad design in 99% of the cases. This field is *not* a replacement for
  505. proper :doc:`static files </howto/static-files/index>` handling.
  506. ``BooleanField``
  507. ----------------
  508. .. class:: BooleanField(**options)
  509. A true/false field.
  510. The default form widget for this field is :class:`~django.forms.CheckboxInput`,
  511. or :class:`~django.forms.NullBooleanSelect` if :attr:`null=True <Field.null>`.
  512. The default value of ``BooleanField`` is ``None`` when :attr:`Field.default`
  513. isn't defined.
  514. ``CharField``
  515. -------------
  516. .. class:: CharField(max_length=None, **options)
  517. A string field, for small- to large-sized strings.
  518. For large amounts of text, use :class:`~django.db.models.TextField`.
  519. The default form widget for this field is a :class:`~django.forms.TextInput`.
  520. :class:`CharField` has the following extra arguments:
  521. .. attribute:: CharField.max_length
  522. The maximum length (in characters) of the field. The ``max_length``
  523. is enforced at the database level and in Django's validation using
  524. :class:`~django.core.validators.MaxLengthValidator`. It's required for all
  525. database backends included with Django except PostgreSQL, which supports
  526. unlimited ``VARCHAR`` columns.
  527. .. note::
  528. If you are writing an application that must be portable to multiple
  529. database backends, you should be aware that there are restrictions on
  530. ``max_length`` for some backends. Refer to the :doc:`database backend
  531. notes </ref/databases>` for details.
  532. .. attribute:: CharField.db_collation
  533. Optional. The database collation name of the field.
  534. .. note::
  535. Collation names are not standardized. As such, this will not be
  536. portable across multiple database backends.
  537. .. admonition:: Oracle
  538. Oracle supports collations only when the ``MAX_STRING_SIZE`` database
  539. initialization parameter is set to ``EXTENDED``.
  540. ``DateField``
  541. -------------
  542. .. class:: DateField(auto_now=False, auto_now_add=False, **options)
  543. A date, represented in Python by a ``datetime.date`` instance. Has a few extra,
  544. optional arguments:
  545. .. attribute:: DateField.auto_now
  546. Automatically set the field to now every time the object is saved. Useful
  547. for "last-modified" timestamps. Note that the current date is *always*
  548. used; it's not just a default value that you can override.
  549. The field is only automatically updated when calling :meth:`Model.save()
  550. <django.db.models.Model.save>`. The field isn't updated when making updates
  551. to other fields in other ways such as :meth:`QuerySet.update()
  552. <django.db.models.query.QuerySet.update>`, though you can specify a custom
  553. value for the field in an update like that.
  554. .. attribute:: DateField.auto_now_add
  555. Automatically set the field to now when the object is first created. Useful
  556. for creation of timestamps. Note that the current date is *always* used;
  557. it's not just a default value that you can override. So even if you
  558. set a value for this field when creating the object, it will be ignored.
  559. If you want to be able to modify this field, set the following instead of
  560. ``auto_now_add=True``:
  561. * For :class:`DateField`: ``default=date.today`` - from
  562. :meth:`datetime.date.today`
  563. * For :class:`DateTimeField`: ``default=timezone.now`` - from
  564. :func:`django.utils.timezone.now`
  565. The default form widget for this field is a
  566. :class:`~django.forms.DateInput`. The admin adds a JavaScript calendar,
  567. and a shortcut for "Today". Includes an additional ``invalid_date`` error
  568. message key.
  569. The options ``auto_now_add``, ``auto_now``, and ``default`` are mutually exclusive.
  570. Any combination of these options will result in an error.
  571. .. note::
  572. As currently implemented, setting ``auto_now`` or ``auto_now_add`` to
  573. ``True`` will cause the field to have ``editable=False`` and ``blank=True``
  574. set.
  575. .. note::
  576. The ``auto_now`` and ``auto_now_add`` options will always use the date in
  577. the :ref:`default timezone <default-current-time-zone>` at the moment of
  578. creation or update. If you need something different, you may want to
  579. consider using your own callable default or overriding ``save()`` instead
  580. of using ``auto_now`` or ``auto_now_add``; or using a ``DateTimeField``
  581. instead of a ``DateField`` and deciding how to handle the conversion from
  582. datetime to date at display time.
  583. ``DateTimeField``
  584. -----------------
  585. .. class:: DateTimeField(auto_now=False, auto_now_add=False, **options)
  586. A date and time, represented in Python by a ``datetime.datetime`` instance.
  587. Takes the same extra arguments as :class:`DateField`.
  588. The default form widget for this field is a single
  589. :class:`~django.forms.DateTimeInput`. The admin uses two separate
  590. :class:`~django.forms.TextInput` widgets with JavaScript shortcuts.
  591. ``DecimalField``
  592. ----------------
  593. .. class:: DecimalField(max_digits=None, decimal_places=None, **options)
  594. A fixed-precision decimal number, represented in Python by a
  595. :class:`~decimal.Decimal` instance. It validates the input using
  596. :class:`~django.core.validators.DecimalValidator`.
  597. Has the following **required** arguments:
  598. .. attribute:: DecimalField.max_digits
  599. The maximum number of digits allowed in the number. Note that this number
  600. must be greater than or equal to ``decimal_places``.
  601. .. attribute:: DecimalField.decimal_places
  602. The number of decimal places to store with the number.
  603. For example, to store numbers up to ``999.99`` with a resolution of 2 decimal
  604. places, you'd use::
  605. models.DecimalField(..., max_digits=5, decimal_places=2)
  606. And to store numbers up to approximately one billion with a resolution of 10
  607. decimal places::
  608. models.DecimalField(..., max_digits=19, decimal_places=10)
  609. The default form widget for this field is a :class:`~django.forms.NumberInput`
  610. when :attr:`~django.forms.Field.localize` is ``False`` or
  611. :class:`~django.forms.TextInput` otherwise.
  612. .. note::
  613. For more information about the differences between the
  614. :class:`FloatField` and :class:`DecimalField` classes, please
  615. see :ref:`FloatField vs. DecimalField <floatfield_vs_decimalfield>`. You
  616. should also be aware of :ref:`SQLite limitations <sqlite-decimal-handling>`
  617. of decimal fields.
  618. ``DurationField``
  619. -----------------
  620. .. class:: DurationField(**options)
  621. A field for storing periods of time - modeled in Python by
  622. :class:`~python:datetime.timedelta`. When used on PostgreSQL, the data type
  623. used is an ``interval`` and on Oracle the data type is ``INTERVAL DAY(9) TO
  624. SECOND(6)``. Otherwise a ``bigint`` of microseconds is used.
  625. .. note::
  626. Arithmetic with ``DurationField`` works in most cases. However on all
  627. databases other than PostgreSQL, comparing the value of a ``DurationField``
  628. to arithmetic on ``DateTimeField`` instances will not work as expected.
  629. ``EmailField``
  630. --------------
  631. .. class:: EmailField(max_length=254, **options)
  632. A :class:`CharField` that checks that the value is a valid email address using
  633. :class:`~django.core.validators.EmailValidator`.
  634. ``FileField``
  635. -------------
  636. .. class:: FileField(upload_to='', storage=None, max_length=100, **options)
  637. A file-upload field.
  638. .. note::
  639. The ``primary_key`` argument isn't supported and will raise an error if
  640. used.
  641. Has the following optional arguments:
  642. .. attribute:: FileField.upload_to
  643. This attribute provides a way of setting the upload directory and file name,
  644. and can be set in two ways. In both cases, the value is passed to the
  645. :meth:`Storage.save() <django.core.files.storage.Storage.save>` method.
  646. If you specify a string value or a :class:`~pathlib.Path`, it may contain
  647. :func:`~time.strftime` formatting, which will be replaced by the date/time
  648. of the file upload (so that uploaded files don't fill up the given
  649. directory). For example::
  650. class MyModel(models.Model):
  651. # file will be uploaded to MEDIA_ROOT/uploads
  652. upload = models.FileField(upload_to="uploads/")
  653. # or...
  654. # file will be saved to MEDIA_ROOT/uploads/2015/01/30
  655. upload = models.FileField(upload_to="uploads/%Y/%m/%d/")
  656. If you are using the default
  657. :class:`~django.core.files.storage.FileSystemStorage`, the string value
  658. will be appended to your :setting:`MEDIA_ROOT` path to form the location on
  659. the local filesystem where uploaded files will be stored. If you are using
  660. a different storage, check that storage's documentation to see how it
  661. handles ``upload_to``.
  662. ``upload_to`` may also be a callable, such as a function. This will be
  663. called to obtain the upload path, including the filename. This callable must
  664. accept two arguments and return a Unix-style path (with forward slashes)
  665. to be passed along to the storage system. The two arguments are:
  666. ====================== ===============================================
  667. Argument Description
  668. ====================== ===============================================
  669. ``instance`` An instance of the model where the
  670. ``FileField`` is defined. More specifically,
  671. this is the particular instance where the
  672. current file is being attached.
  673. In most cases, this object will not have been
  674. saved to the database yet, so if it uses the
  675. default ``AutoField``, *it might not yet have a
  676. value for its primary key field*.
  677. ``filename`` The filename that was originally given to the
  678. file. This may or may not be taken into account
  679. when determining the final destination path.
  680. ====================== ===============================================
  681. For example::
  682. def user_directory_path(instance, filename):
  683. # file will be uploaded to MEDIA_ROOT/user_<id>/<filename>
  684. return "user_{0}/{1}".format(instance.user.id, filename)
  685. class MyModel(models.Model):
  686. upload = models.FileField(upload_to=user_directory_path)
  687. .. attribute:: FileField.storage
  688. A storage object, or a callable which returns a storage object. This
  689. handles the storage and retrieval of your files. See :doc:`/topics/files`
  690. for details on how to provide this object.
  691. The default form widget for this field is a
  692. :class:`~django.forms.ClearableFileInput`.
  693. Using a :class:`FileField` or an :class:`ImageField` (see below) in a model
  694. takes a few steps:
  695. #. In your settings file, you'll need to define :setting:`MEDIA_ROOT` as the
  696. full path to a directory where you'd like Django to store uploaded files.
  697. (For performance, these files are not stored in the database.) Define
  698. :setting:`MEDIA_URL` as the base public URL of that directory. Make sure
  699. that this directory is writable by the web server's user account.
  700. #. Add the :class:`FileField` or :class:`ImageField` to your model, defining
  701. the :attr:`~FileField.upload_to` option to specify a subdirectory of
  702. :setting:`MEDIA_ROOT` to use for uploaded files.
  703. #. All that will be stored in your database is a path to the file
  704. (relative to :setting:`MEDIA_ROOT`). You'll most likely want to use the
  705. convenience :attr:`~django.db.models.fields.files.FieldFile.url` attribute
  706. provided by Django. For example, if your :class:`ImageField` is called
  707. ``mug_shot``, you can get the absolute path to your image in a template with
  708. ``{{ object.mug_shot.url }}``.
  709. For example, say your :setting:`MEDIA_ROOT` is set to ``'/home/media'``, and
  710. :attr:`~FileField.upload_to` is set to ``'photos/%Y/%m/%d'``. The ``'%Y/%m/%d'``
  711. part of :attr:`~FileField.upload_to` is :func:`~time.strftime` formatting;
  712. ``'%Y'`` is the four-digit year, ``'%m'`` is the two-digit month and ``'%d'`` is
  713. the two-digit day. If you upload a file on Jan. 15, 2007, it will be saved in
  714. the directory ``/home/media/photos/2007/01/15``.
  715. If you wanted to retrieve the uploaded file's on-disk filename, or the file's
  716. size, you could use the :attr:`~django.core.files.File.name` and
  717. :attr:`~django.core.files.File.size` attributes respectively; for more
  718. information on the available attributes and methods, see the
  719. :class:`~django.core.files.File` class reference and the :doc:`/topics/files`
  720. topic guide.
  721. .. note::
  722. The file is saved as part of saving the model in the database, so the actual
  723. file name used on disk cannot be relied on until after the model has been
  724. saved.
  725. The uploaded file's relative URL can be obtained using the
  726. :attr:`~django.db.models.fields.files.FieldFile.url` attribute. Internally,
  727. this calls the :meth:`~django.core.files.storage.Storage.url` method of the
  728. underlying :class:`~django.core.files.storage.Storage` class.
  729. .. _file-upload-security:
  730. Note that whenever you deal with uploaded files, you should pay close attention
  731. to where you're uploading them and what type of files they are, to avoid
  732. security holes. *Validate all uploaded files* so that you're sure the files are
  733. what you think they are. For example, if you blindly let somebody upload files,
  734. without validation, to a directory that's within your web server's document
  735. root, then somebody could upload a CGI or PHP script and execute that script by
  736. visiting its URL on your site. Don't allow that.
  737. Also note that even an uploaded HTML file, since it can be executed by the
  738. browser (though not by the server), can pose security threats that are
  739. equivalent to XSS or CSRF attacks.
  740. :class:`FileField` instances are created in your database as ``varchar``
  741. columns with a default max length of 100 characters. As with other fields, you
  742. can change the maximum length using the :attr:`~CharField.max_length` argument.
  743. ``FileField`` and ``FieldFile``
  744. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  745. .. currentmodule:: django.db.models.fields.files
  746. .. class:: FieldFile
  747. When you access a :class:`~django.db.models.FileField` on a model, you are
  748. given an instance of :class:`FieldFile` as a proxy for accessing the underlying
  749. file.
  750. The API of :class:`FieldFile` mirrors that of :class:`~django.core.files.File`,
  751. with one key difference: *The object wrapped by the class is not necessarily a
  752. wrapper around Python's built-in file object.* Instead, it is a wrapper around
  753. the result of the :attr:`Storage.open()<django.core.files.storage.Storage.open>`
  754. method, which may be a :class:`~django.core.files.File` object, or it may be a
  755. custom storage's implementation of the :class:`~django.core.files.File` API.
  756. In addition to the API inherited from :class:`~django.core.files.File` such as
  757. ``read()`` and ``write()``, :class:`FieldFile` includes several methods that
  758. can be used to interact with the underlying file:
  759. .. warning::
  760. Two methods of this class, :meth:`~FieldFile.save` and
  761. :meth:`~FieldFile.delete`, default to saving the model object of the
  762. associated ``FieldFile`` in the database.
  763. .. attribute:: FieldFile.name
  764. The name of the file including the relative path from the root of the
  765. :class:`~django.core.files.storage.Storage` of the associated
  766. :class:`~django.db.models.FileField`.
  767. .. attribute:: FieldFile.path
  768. A read-only property to access the file's local filesystem path by calling the
  769. :meth:`~django.core.files.storage.Storage.path` method of the underlying
  770. :class:`~django.core.files.storage.Storage` class.
  771. .. attribute:: FieldFile.size
  772. The result of the underlying :attr:`Storage.size()
  773. <django.core.files.storage.Storage.size>` method.
  774. .. attribute:: FieldFile.url
  775. A read-only property to access the file's relative URL by calling the
  776. :meth:`~django.core.files.storage.Storage.url` method of the underlying
  777. :class:`~django.core.files.storage.Storage` class.
  778. .. method:: FieldFile.open(mode='rb')
  779. Opens or reopens the file associated with this instance in the specified
  780. ``mode``. Unlike the standard Python ``open()`` method, it doesn't return a
  781. file descriptor.
  782. Since the underlying file is opened implicitly when accessing it, it may be
  783. unnecessary to call this method except to reset the pointer to the underlying
  784. file or to change the ``mode``.
  785. .. method:: FieldFile.close()
  786. Behaves like the standard Python ``file.close()`` method and closes the file
  787. associated with this instance.
  788. .. method:: FieldFile.save(name, content, save=True)
  789. This method takes a filename and file contents and passes them to the storage
  790. class for the field, then associates the stored file with the model field.
  791. If you want to manually associate file data with
  792. :class:`~django.db.models.FileField` instances on your model, the ``save()``
  793. method is used to persist that file data.
  794. Takes two required arguments: ``name`` which is the name of the file, and
  795. ``content`` which is an object containing the file's contents. The
  796. optional ``save`` argument controls whether or not the model instance is
  797. saved after the file associated with this field has been altered. Defaults to
  798. ``True``.
  799. Note that the ``content`` argument should be an instance of
  800. :class:`django.core.files.File`, not Python's built-in file object.
  801. You can construct a :class:`~django.core.files.File` from an existing
  802. Python file object like this::
  803. from django.core.files import File
  804. # Open an existing file using Python's built-in open()
  805. f = open("/path/to/hello.world")
  806. myfile = File(f)
  807. Or you can construct one from a Python string like this::
  808. from django.core.files.base import ContentFile
  809. myfile = ContentFile("hello world")
  810. For more information, see :doc:`/topics/files`.
  811. .. method:: FieldFile.delete(save=True)
  812. Deletes the file associated with this instance and clears all attributes on
  813. the field. Note: This method will close the file if it happens to be open when
  814. ``delete()`` is called.
  815. The optional ``save`` argument controls whether or not the model instance is
  816. saved after the file associated with this field has been deleted. Defaults to
  817. ``True``.
  818. Note that when a model is deleted, related files are not deleted. If you need
  819. to cleanup orphaned files, you'll need to handle it yourself (for instance,
  820. with a custom management command that can be run manually or scheduled to run
  821. periodically via e.g. cron).
  822. .. currentmodule:: django.db.models
  823. ``FilePathField``
  824. -----------------
  825. .. class:: FilePathField(path='', match=None, recursive=False, allow_files=True, allow_folders=False, max_length=100, **options)
  826. A :class:`CharField` whose choices are limited to the filenames in a certain
  827. directory on the filesystem. Has some special arguments, of which the first is
  828. **required**:
  829. .. attribute:: FilePathField.path
  830. Required. The absolute filesystem path to a directory from which this
  831. :class:`FilePathField` should get its choices. Example: ``"/home/images"``.
  832. ``path`` may also be a callable, such as a function to dynamically set the
  833. path at runtime. Example::
  834. import os
  835. from django.conf import settings
  836. from django.db import models
  837. def images_path():
  838. return os.path.join(settings.LOCAL_FILE_DIR, "images")
  839. class MyModel(models.Model):
  840. file = models.FilePathField(path=images_path)
  841. .. attribute:: FilePathField.match
  842. Optional. A regular expression, as a string, that :class:`FilePathField`
  843. will use to filter filenames. Note that the regex will be applied to the
  844. base filename, not the full path. Example: ``"foo.*\.txt$"``, which will
  845. match a file called ``foo23.txt`` but not ``bar.txt`` or ``foo23.png``.
  846. .. attribute:: FilePathField.recursive
  847. Optional. Either ``True`` or ``False``. Default is ``False``. Specifies
  848. whether all subdirectories of :attr:`~FilePathField.path` should be included
  849. .. attribute:: FilePathField.allow_files
  850. Optional. Either ``True`` or ``False``. Default is ``True``. Specifies
  851. whether files in the specified location should be included. Either this or
  852. :attr:`~FilePathField.allow_folders` must be ``True``.
  853. .. attribute:: FilePathField.allow_folders
  854. Optional. Either ``True`` or ``False``. Default is ``False``. Specifies
  855. whether folders in the specified location should be included. Either this
  856. or :attr:`~FilePathField.allow_files` must be ``True``.
  857. The one potential gotcha is that :attr:`~FilePathField.match` applies to the
  858. base filename, not the full path. So, this example::
  859. FilePathField(path="/home/images", match="foo.*", recursive=True)
  860. ...will match ``/home/images/foo.png`` but not ``/home/images/foo/bar.png``
  861. because the :attr:`~FilePathField.match` applies to the base filename
  862. (``foo.png`` and ``bar.png``).
  863. :class:`FilePathField` instances are created in your database as ``varchar``
  864. columns with a default max length of 100 characters. As with other fields, you
  865. can change the maximum length using the :attr:`~CharField.max_length` argument.
  866. ``FloatField``
  867. --------------
  868. .. class:: FloatField(**options)
  869. A floating-point number represented in Python by a ``float`` instance.
  870. The default form widget for this field is a :class:`~django.forms.NumberInput`
  871. when :attr:`~django.forms.Field.localize` is ``False`` or
  872. :class:`~django.forms.TextInput` otherwise.
  873. .. _floatfield_vs_decimalfield:
  874. .. admonition:: ``FloatField`` vs. ``DecimalField``
  875. The :class:`FloatField` class is sometimes mixed up with the
  876. :class:`DecimalField` class. Although they both represent real numbers, they
  877. represent those numbers differently. ``FloatField`` uses Python's ``float``
  878. type internally, while ``DecimalField`` uses Python's ``Decimal`` type. For
  879. information on the difference between the two, see Python's documentation
  880. for the :mod:`decimal` module.
  881. ``GeneratedField``
  882. ------------------
  883. .. versionadded:: 5.0
  884. .. class:: GeneratedField(expression, output_field, db_persist=None, **kwargs)
  885. A field that is always computed based on other fields in the model. This field
  886. is managed and updated by the database itself. Uses the ``GENERATED ALWAYS``
  887. SQL syntax.
  888. There are two kinds of generated columns: stored and virtual. A stored
  889. generated column is computed when it is written (inserted or updated) and
  890. occupies storage as if it were a regular column. A virtual generated column
  891. occupies no storage and is computed when it is read. Thus, a virtual generated
  892. column is similar to a view and a stored generated column is similar to a
  893. materialized view.
  894. .. attribute:: GeneratedField.expression
  895. An :class:`Expression` used by the database to automatically set the field
  896. value each time the model is changed.
  897. The expressions should be deterministic and only reference fields within
  898. the model (in the same database table). Generated fields cannot reference
  899. other generated fields. Database backends can impose further restrictions.
  900. .. attribute:: GeneratedField.output_field
  901. A model field instance to define the field's data type.
  902. .. attribute:: GeneratedField.db_persist
  903. Determines if the database column should occupy storage as if it were a
  904. real column. If ``False``, the column acts as a virtual column and does
  905. not occupy database storage space.
  906. PostgreSQL only supports persisted columns. Oracle only supports virtual
  907. columns.
  908. .. admonition:: Refresh the data
  909. Since the database always computed the value, the object must be reloaded
  910. to access the new value after :meth:`~Model.save()`, for example, by using
  911. :meth:`~Model.refresh_from_db()`.
  912. .. admonition:: Database limitations
  913. There are many database-specific restrictions on generated fields that
  914. Django doesn't validate and the database may raise an error e.g. PostgreSQL
  915. requires functions and operators referenced in a generated column to be
  916. marked as ``IMMUTABLE``.
  917. You should always check that ``expression`` is supported on your database.
  918. Check out `MariaDB`_, `MySQL`_, `Oracle`_, `PostgreSQL`_, or `SQLite`_
  919. docs.
  920. .. _MariaDB: https://mariadb.com/kb/en/generated-columns/#expression-support
  921. .. _MySQL: https://dev.mysql.com/doc/refman/en/create-table-generated-columns.html
  922. .. _Oracle: https://docs.oracle.com/en/database/oracle/oracle-database/21/sqlrf/CREATE-TABLE.html#GUID-F9CE0CC3-13AE-4744-A43C-EAC7A71AAAB6__BABIIGBD
  923. .. _PostgreSQL: https://www.postgresql.org/docs/current/ddl-generated-columns.html
  924. .. _SQLite: https://www.sqlite.org/gencol.html#limitations
  925. ``GenericIPAddressField``
  926. -------------------------
  927. .. class:: GenericIPAddressField(protocol='both', unpack_ipv4=False, **options)
  928. An IPv4 or IPv6 address, in string format (e.g. ``192.0.2.30`` or
  929. ``2a02:42fe::4``). The default form widget for this field is a
  930. :class:`~django.forms.TextInput`.
  931. The IPv6 address normalization follows :rfc:`4291#section-2.2` section 2.2,
  932. including using the IPv4 format suggested in paragraph 3 of that section, like
  933. ``::ffff:192.0.2.0``. For example, ``2001:0::0:01`` would be normalized to
  934. ``2001::1``, and ``::ffff:0a0a:0a0a`` to ``::ffff:10.10.10.10``. All characters
  935. are converted to lowercase.
  936. .. attribute:: GenericIPAddressField.protocol
  937. Limits valid inputs to the specified protocol.
  938. Accepted values are ``'both'`` (default), ``'IPv4'``
  939. or ``'IPv6'``. Matching is case insensitive.
  940. .. attribute:: GenericIPAddressField.unpack_ipv4
  941. Unpacks IPv4 mapped addresses like ``::ffff:192.0.2.1``.
  942. If this option is enabled that address would be unpacked to
  943. ``192.0.2.1``. Default is disabled. Can only be used
  944. when ``protocol`` is set to ``'both'``.
  945. If you allow for blank values, you have to allow for null values since blank
  946. values are stored as null.
  947. ``ImageField``
  948. --------------
  949. .. class:: ImageField(upload_to=None, height_field=None, width_field=None, max_length=100, **options)
  950. Inherits all attributes and methods from :class:`FileField`, but also
  951. validates that the uploaded object is a valid image.
  952. In addition to the special attributes that are available for :class:`FileField`,
  953. an :class:`ImageField` also has ``height`` and ``width`` attributes.
  954. To facilitate querying on those attributes, :class:`ImageField` has the
  955. following optional arguments:
  956. .. attribute:: ImageField.height_field
  957. Name of a model field which will be auto-populated with the height of the
  958. image each time the model instance is saved.
  959. .. attribute:: ImageField.width_field
  960. Name of a model field which will be auto-populated with the width of the
  961. image each time the model instance is saved.
  962. Requires the `Pillow`_ library.
  963. .. _Pillow: https://pillow.readthedocs.io/en/latest/
  964. :class:`ImageField` instances are created in your database as ``varchar``
  965. columns with a default max length of 100 characters. As with other fields, you
  966. can change the maximum length using the :attr:`~CharField.max_length` argument.
  967. The default form widget for this field is a
  968. :class:`~django.forms.ClearableFileInput`.
  969. ``IntegerField``
  970. ----------------
  971. .. class:: IntegerField(**options)
  972. An integer. Values from ``-2147483648`` to ``2147483647`` are safe in all
  973. databases supported by Django.
  974. It uses :class:`~django.core.validators.MinValueValidator` and
  975. :class:`~django.core.validators.MaxValueValidator` to validate the input based
  976. on the values that the default database supports.
  977. The default form widget for this field is a :class:`~django.forms.NumberInput`
  978. when :attr:`~django.forms.Field.localize` is ``False`` or
  979. :class:`~django.forms.TextInput` otherwise.
  980. ``JSONField``
  981. -------------
  982. .. class:: JSONField(encoder=None, decoder=None, **options)
  983. A field for storing JSON encoded data. In Python the data is represented in its
  984. Python native format: dictionaries, lists, strings, numbers, booleans and
  985. ``None``.
  986. ``JSONField`` is supported on MariaDB, MySQL, Oracle, PostgreSQL, and SQLite
  987. (with the :ref:`JSON1 extension enabled <sqlite-json1>`).
  988. .. attribute:: JSONField.encoder
  989. An optional :py:class:`json.JSONEncoder` subclass to serialize data types
  990. not supported by the standard JSON serializer (e.g. ``datetime.datetime``
  991. or :class:`~python:uuid.UUID`). For example, you can use the
  992. :class:`~django.core.serializers.json.DjangoJSONEncoder` class.
  993. Defaults to ``json.JSONEncoder``.
  994. .. attribute:: JSONField.decoder
  995. An optional :py:class:`json.JSONDecoder` subclass to deserialize the value
  996. retrieved from the database. The value will be in the format chosen by the
  997. custom encoder (most often a string). Your deserialization may need to
  998. account for the fact that you can't be certain of the input type. For
  999. example, you run the risk of returning a ``datetime`` that was actually a
  1000. string that just happened to be in the same format chosen for
  1001. ``datetime``\s.
  1002. Defaults to ``json.JSONDecoder``.
  1003. To query ``JSONField`` in the database, see :ref:`querying-jsonfield`.
  1004. .. admonition:: Default value
  1005. If you give the field a :attr:`~django.db.models.Field.default`, ensure
  1006. it's a callable such as the :py:class:`dict` class or a function that
  1007. returns a fresh object each time. Incorrectly using a mutable object like
  1008. ``default={}`` or ``default=[]`` creates a mutable default that is shared
  1009. between all instances.
  1010. .. admonition:: Indexing
  1011. :class:`~django.db.models.Index` and :attr:`.Field.db_index` both create a
  1012. B-tree index, which isn't particularly helpful when querying ``JSONField``.
  1013. On PostgreSQL only, you can use
  1014. :class:`~django.contrib.postgres.indexes.GinIndex` that is better suited.
  1015. .. admonition:: PostgreSQL users
  1016. PostgreSQL has two native JSON based data types: ``json`` and ``jsonb``.
  1017. The main difference between them is how they are stored and how they can be
  1018. queried. PostgreSQL's ``json`` field is stored as the original string
  1019. representation of the JSON and must be decoded on the fly when queried
  1020. based on keys. The ``jsonb`` field is stored based on the actual structure
  1021. of the JSON which allows indexing. The trade-off is a small additional cost
  1022. on writing to the ``jsonb`` field. ``JSONField`` uses ``jsonb``.
  1023. .. admonition:: Oracle users
  1024. Oracle Database does not support storing JSON scalar values. Only JSON
  1025. objects and arrays (represented in Python using :py:class:`dict` and
  1026. :py:class:`list`) are supported.
  1027. ``PositiveBigIntegerField``
  1028. ---------------------------
  1029. .. class:: PositiveBigIntegerField(**options)
  1030. Like a :class:`PositiveIntegerField`, but only allows values under a certain
  1031. (database-dependent) point. Values from ``0`` to ``9223372036854775807`` are
  1032. safe in all databases supported by Django.
  1033. ``PositiveIntegerField``
  1034. ------------------------
  1035. .. class:: PositiveIntegerField(**options)
  1036. Like an :class:`IntegerField`, but must be either positive or zero (``0``).
  1037. Values from ``0`` to ``2147483647`` are safe in all databases supported by
  1038. Django. The value ``0`` is accepted for backward compatibility reasons.
  1039. ``PositiveSmallIntegerField``
  1040. -----------------------------
  1041. .. class:: PositiveSmallIntegerField(**options)
  1042. Like a :class:`PositiveIntegerField`, but only allows values under a certain
  1043. (database-dependent) point. Values from ``0`` to ``32767`` are safe in all
  1044. databases supported by Django.
  1045. ``SlugField``
  1046. -------------
  1047. .. class:: SlugField(max_length=50, **options)
  1048. :term:`Slug <slug>` is a newspaper term. A slug is a short label for something,
  1049. containing only letters, numbers, underscores or hyphens. They're generally used
  1050. in URLs.
  1051. Like a CharField, you can specify :attr:`~CharField.max_length` (read the note
  1052. about database portability and :attr:`~CharField.max_length` in that section,
  1053. too). If :attr:`~CharField.max_length` is not specified, Django will use a
  1054. default length of 50.
  1055. Implies setting :attr:`Field.db_index` to ``True``.
  1056. It is often useful to automatically prepopulate a SlugField based on the value
  1057. of some other value. You can do this automatically in the admin using
  1058. :attr:`~django.contrib.admin.ModelAdmin.prepopulated_fields`.
  1059. It uses :class:`~django.core.validators.validate_slug` or
  1060. :class:`~django.core.validators.validate_unicode_slug` for validation.
  1061. .. attribute:: SlugField.allow_unicode
  1062. If ``True``, the field accepts Unicode letters in addition to ASCII
  1063. letters. Defaults to ``False``.
  1064. ``SmallAutoField``
  1065. ------------------
  1066. .. class:: SmallAutoField(**options)
  1067. Like an :class:`AutoField`, but only allows values under a certain
  1068. (database-dependent) limit. Values from ``1`` to ``32767`` are safe in all
  1069. databases supported by Django.
  1070. ``SmallIntegerField``
  1071. ---------------------
  1072. .. class:: SmallIntegerField(**options)
  1073. Like an :class:`IntegerField`, but only allows values under a certain
  1074. (database-dependent) point. Values from ``-32768`` to ``32767`` are safe in all
  1075. databases supported by Django.
  1076. ``TextField``
  1077. -------------
  1078. .. class:: TextField(**options)
  1079. A large text field. The default form widget for this field is a
  1080. :class:`~django.forms.Textarea`.
  1081. If you specify a ``max_length`` attribute, it will be reflected in the
  1082. :class:`~django.forms.Textarea` widget of the auto-generated form field.
  1083. However it is not enforced at the model or database level. Use a
  1084. :class:`CharField` for that.
  1085. .. attribute:: TextField.db_collation
  1086. Optional. The database collation name of the field.
  1087. .. note::
  1088. Collation names are not standardized. As such, this will not be
  1089. portable across multiple database backends.
  1090. .. admonition:: Oracle
  1091. Oracle does not support collations for a ``TextField``.
  1092. ``TimeField``
  1093. -------------
  1094. .. class:: TimeField(auto_now=False, auto_now_add=False, **options)
  1095. A time, represented in Python by a ``datetime.time`` instance. Accepts the same
  1096. auto-population options as :class:`DateField`.
  1097. The default form widget for this field is a :class:`~django.forms.TimeInput`.
  1098. The admin adds some JavaScript shortcuts.
  1099. ``URLField``
  1100. ------------
  1101. .. class:: URLField(max_length=200, **options)
  1102. A :class:`CharField` for a URL, validated by
  1103. :class:`~django.core.validators.URLValidator`.
  1104. The default form widget for this field is a :class:`~django.forms.URLInput`.
  1105. Like all :class:`CharField` subclasses, :class:`URLField` takes the optional
  1106. :attr:`~CharField.max_length` argument. If you don't specify
  1107. :attr:`~CharField.max_length`, a default of 200 is used.
  1108. ``UUIDField``
  1109. -------------
  1110. .. class:: UUIDField(**options)
  1111. A field for storing universally unique identifiers. Uses Python's
  1112. :class:`~python:uuid.UUID` class. When used on PostgreSQL and MariaDB 10.7+,
  1113. this stores in a ``uuid`` datatype, otherwise in a ``char(32)``.
  1114. Universally unique identifiers are a good alternative to :class:`AutoField` for
  1115. :attr:`~Field.primary_key`. The database will not generate the UUID for you, so
  1116. it is recommended to use :attr:`~Field.default`::
  1117. import uuid
  1118. from django.db import models
  1119. class MyUUIDModel(models.Model):
  1120. id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
  1121. # other fields
  1122. Note that a callable (with the parentheses omitted) is passed to ``default``,
  1123. not an instance of ``UUID``.
  1124. .. admonition:: Lookups on PostgreSQL and MariaDB 10.7+
  1125. Using :lookup:`iexact`, :lookup:`contains`, :lookup:`icontains`,
  1126. :lookup:`startswith`, :lookup:`istartswith`, :lookup:`endswith`, or
  1127. :lookup:`iendswith` lookups on PostgreSQL don't work for values without
  1128. hyphens, because PostgreSQL and MariaDB 10.7+ store them in a hyphenated
  1129. uuid datatype type.
  1130. Relationship fields
  1131. ===================
  1132. .. module:: django.db.models.fields.related
  1133. :synopsis: Related field types
  1134. .. currentmodule:: django.db.models
  1135. Django also defines a set of fields that represent relations.
  1136. .. _ref-foreignkey:
  1137. ``ForeignKey``
  1138. --------------
  1139. .. class:: ForeignKey(to, on_delete, **options)
  1140. A many-to-one relationship. Requires two positional arguments: the class to
  1141. which the model is related and the :attr:`~ForeignKey.on_delete` option.
  1142. .. _recursive-relationships:
  1143. To create a recursive relationship -- an object that has a many-to-one
  1144. relationship with itself -- use ``models.ForeignKey('self',
  1145. on_delete=models.CASCADE)``.
  1146. .. _lazy-relationships:
  1147. If you need to create a relationship on a model that has not yet been defined,
  1148. you can use the name of the model, rather than the model object itself::
  1149. from django.db import models
  1150. class Car(models.Model):
  1151. manufacturer = models.ForeignKey(
  1152. "Manufacturer",
  1153. on_delete=models.CASCADE,
  1154. )
  1155. # ...
  1156. class Manufacturer(models.Model):
  1157. # ...
  1158. pass
  1159. Relationships defined this way on :ref:`abstract models
  1160. <abstract-base-classes>` are resolved when the model is subclassed as a
  1161. concrete model and are not relative to the abstract model's ``app_label``:
  1162. .. code-block:: python
  1163. :caption: ``products/models.py``
  1164. from django.db import models
  1165. class AbstractCar(models.Model):
  1166. manufacturer = models.ForeignKey("Manufacturer", on_delete=models.CASCADE)
  1167. class Meta:
  1168. abstract = True
  1169. .. code-block:: python
  1170. :caption: ``production/models.py``
  1171. from django.db import models
  1172. from products.models import AbstractCar
  1173. class Manufacturer(models.Model):
  1174. pass
  1175. class Car(AbstractCar):
  1176. pass
  1177. # Car.manufacturer will point to `production.Manufacturer` here.
  1178. To refer to models defined in another application, you can explicitly specify
  1179. a model with the full application label. For example, if the ``Manufacturer``
  1180. model above is defined in another application called ``production``, you'd
  1181. need to use::
  1182. class Car(models.Model):
  1183. manufacturer = models.ForeignKey(
  1184. "production.Manufacturer",
  1185. on_delete=models.CASCADE,
  1186. )
  1187. This sort of reference, called a lazy relationship, can be useful when
  1188. resolving circular import dependencies between two applications.
  1189. A database index is automatically created on the ``ForeignKey``. You can
  1190. disable this by setting :attr:`~Field.db_index` to ``False``. You may want to
  1191. avoid the overhead of an index if you are creating a foreign key for
  1192. consistency rather than joins, or if you will be creating an alternative index
  1193. like a partial or multiple column index.
  1194. Database Representation
  1195. ~~~~~~~~~~~~~~~~~~~~~~~
  1196. Behind the scenes, Django appends ``"_id"`` to the field name to create its
  1197. database column name. In the above example, the database table for the ``Car``
  1198. model will have a ``manufacturer_id`` column. (You can change this explicitly by
  1199. specifying :attr:`~Field.db_column`) However, your code should never have to
  1200. deal with the database column name, unless you write custom SQL. You'll always
  1201. deal with the field names of your model object.
  1202. .. _foreign-key-arguments:
  1203. Arguments
  1204. ~~~~~~~~~
  1205. :class:`ForeignKey` accepts other arguments that define the details of how the
  1206. relation works.
  1207. .. attribute:: ForeignKey.on_delete
  1208. When an object referenced by a :class:`ForeignKey` is deleted, Django will
  1209. emulate the behavior of the SQL constraint specified by the
  1210. :attr:`on_delete` argument. For example, if you have a nullable
  1211. :class:`ForeignKey` and you want it to be set null when the referenced
  1212. object is deleted::
  1213. user = models.ForeignKey(
  1214. User,
  1215. models.SET_NULL,
  1216. blank=True,
  1217. null=True,
  1218. )
  1219. ``on_delete`` doesn't create an SQL constraint in the database. Support for
  1220. database-level cascade options :ticket:`may be implemented later <21961>`.
  1221. The possible values for :attr:`~ForeignKey.on_delete` are found in
  1222. :mod:`django.db.models`:
  1223. * .. attribute:: CASCADE
  1224. Cascade deletes. Django emulates the behavior of the SQL constraint ON
  1225. DELETE CASCADE and also deletes the object containing the ForeignKey.
  1226. :meth:`.Model.delete` isn't called on related models, but the
  1227. :data:`~django.db.models.signals.pre_delete` and
  1228. :data:`~django.db.models.signals.post_delete` signals are sent for all
  1229. deleted objects.
  1230. * .. attribute:: PROTECT
  1231. Prevent deletion of the referenced object by raising
  1232. :exc:`~django.db.models.ProtectedError`, a subclass of
  1233. :exc:`django.db.IntegrityError`.
  1234. * .. attribute:: RESTRICT
  1235. Prevent deletion of the referenced object by raising
  1236. :exc:`~django.db.models.RestrictedError` (a subclass of
  1237. :exc:`django.db.IntegrityError`). Unlike :attr:`PROTECT`, deletion of the
  1238. referenced object is allowed if it also references a different object
  1239. that is being deleted in the same operation, but via a :attr:`CASCADE`
  1240. relationship.
  1241. Consider this set of models::
  1242. class Artist(models.Model):
  1243. name = models.CharField(max_length=10)
  1244. class Album(models.Model):
  1245. artist = models.ForeignKey(Artist, on_delete=models.CASCADE)
  1246. class Song(models.Model):
  1247. artist = models.ForeignKey(Artist, on_delete=models.CASCADE)
  1248. album = models.ForeignKey(Album, on_delete=models.RESTRICT)
  1249. ``Artist`` can be deleted even if that implies deleting an ``Album``
  1250. which is referenced by a ``Song``, because ``Song`` also references
  1251. ``Artist`` itself through a cascading relationship. For example:
  1252. .. code-block:: pycon
  1253. >>> artist_one = Artist.objects.create(name="artist one")
  1254. >>> artist_two = Artist.objects.create(name="artist two")
  1255. >>> album_one = Album.objects.create(artist=artist_one)
  1256. >>> album_two = Album.objects.create(artist=artist_two)
  1257. >>> song_one = Song.objects.create(artist=artist_one, album=album_one)
  1258. >>> song_two = Song.objects.create(artist=artist_one, album=album_two)
  1259. >>> album_one.delete()
  1260. # Raises RestrictedError.
  1261. >>> artist_two.delete()
  1262. # Raises RestrictedError.
  1263. >>> artist_one.delete()
  1264. (4, {'Song': 2, 'Album': 1, 'Artist': 1})
  1265. * .. attribute:: SET_NULL
  1266. Set the :class:`ForeignKey` null; this is only possible if
  1267. :attr:`~Field.null` is ``True``.
  1268. * .. attribute:: SET_DEFAULT
  1269. Set the :class:`ForeignKey` to its default value; a default for the
  1270. :class:`ForeignKey` must be set.
  1271. * .. function:: SET()
  1272. Set the :class:`ForeignKey` to the value passed to
  1273. :func:`~django.db.models.SET()`, or if a callable is passed in,
  1274. the result of calling it. In most cases, passing a callable will be
  1275. necessary to avoid executing queries at the time your ``models.py`` is
  1276. imported::
  1277. from django.conf import settings
  1278. from django.contrib.auth import get_user_model
  1279. from django.db import models
  1280. def get_sentinel_user():
  1281. return get_user_model().objects.get_or_create(username="deleted")[0]
  1282. class MyModel(models.Model):
  1283. user = models.ForeignKey(
  1284. settings.AUTH_USER_MODEL,
  1285. on_delete=models.SET(get_sentinel_user),
  1286. )
  1287. * .. attribute:: DO_NOTHING
  1288. Take no action. If your database backend enforces referential
  1289. integrity, this will cause an :exc:`~django.db.IntegrityError` unless
  1290. you manually add an SQL ``ON DELETE`` constraint to the database field.
  1291. .. attribute:: ForeignKey.limit_choices_to
  1292. Sets a limit to the available choices for this field when this field is
  1293. rendered using a ``ModelForm`` or the admin (by default, all objects
  1294. in the queryset are available to choose). Either a dictionary, a
  1295. :class:`~django.db.models.Q` object, or a callable returning a
  1296. dictionary or :class:`~django.db.models.Q` object can be used.
  1297. For example::
  1298. staff_member = models.ForeignKey(
  1299. User,
  1300. on_delete=models.CASCADE,
  1301. limit_choices_to={"is_staff": True},
  1302. )
  1303. causes the corresponding field on the ``ModelForm`` to list only ``Users``
  1304. that have ``is_staff=True``. This may be helpful in the Django admin.
  1305. The callable form can be helpful, for instance, when used in conjunction
  1306. with the Python ``datetime`` module to limit selections by date range. For
  1307. example::
  1308. def limit_pub_date_choices():
  1309. return {"pub_date__lte": datetime.date.today()}
  1310. limit_choices_to = limit_pub_date_choices
  1311. If ``limit_choices_to`` is or returns a :class:`Q object
  1312. <django.db.models.Q>`, which is useful for :ref:`complex queries
  1313. <complex-lookups-with-q>`, then it will only have an effect on the choices
  1314. available in the admin when the field is not listed in
  1315. :attr:`~django.contrib.admin.ModelAdmin.raw_id_fields` in the
  1316. ``ModelAdmin`` for the model.
  1317. .. note::
  1318. If a callable is used for ``limit_choices_to``, it will be invoked
  1319. every time a new form is instantiated. It may also be invoked when a
  1320. model is validated, for example by management commands or the admin.
  1321. The admin constructs querysets to validate its form inputs in various
  1322. edge cases multiple times, so there is a possibility your callable may
  1323. be invoked several times.
  1324. .. attribute:: ForeignKey.related_name
  1325. The name to use for the relation from the related object back to this one.
  1326. It's also the default value for :attr:`related_query_name` (the name to use
  1327. for the reverse filter name from the target model). See the :ref:`related
  1328. objects documentation <backwards-related-objects>` for a full explanation
  1329. and example. Note that you must set this value when defining relations on
  1330. :ref:`abstract models <abstract-base-classes>`; and when you do so
  1331. :ref:`some special syntax <abstract-related-name>` is available.
  1332. If you'd prefer Django not to create a backwards relation, set
  1333. ``related_name`` to ``'+'`` or end it with ``'+'``. For example, this will
  1334. ensure that the ``User`` model won't have a backwards relation to this
  1335. model::
  1336. user = models.ForeignKey(
  1337. User,
  1338. on_delete=models.CASCADE,
  1339. related_name="+",
  1340. )
  1341. .. attribute:: ForeignKey.related_query_name
  1342. The name to use for the reverse filter name from the target model. It
  1343. defaults to the value of :attr:`related_name` or
  1344. :attr:`~django.db.models.Options.default_related_name` if set, otherwise it
  1345. defaults to the name of the model::
  1346. # Declare the ForeignKey with related_query_name
  1347. class Tag(models.Model):
  1348. article = models.ForeignKey(
  1349. Article,
  1350. on_delete=models.CASCADE,
  1351. related_name="tags",
  1352. related_query_name="tag",
  1353. )
  1354. name = models.CharField(max_length=255)
  1355. # That's now the name of the reverse filter
  1356. Article.objects.filter(tag__name="important")
  1357. Like :attr:`related_name`, ``related_query_name`` supports app label and
  1358. class interpolation via :ref:`some special syntax <abstract-related-name>`.
  1359. .. attribute:: ForeignKey.to_field
  1360. The field on the related object that the relation is to. By default, Django
  1361. uses the primary key of the related object. If you reference a different
  1362. field, that field must have ``unique=True``.
  1363. .. attribute:: ForeignKey.db_constraint
  1364. Controls whether or not a constraint should be created in the database for
  1365. this foreign key. The default is ``True``, and that's almost certainly what
  1366. you want; setting this to ``False`` can be very bad for data integrity.
  1367. That said, here are some scenarios where you might want to do this:
  1368. * You have legacy data that is not valid.
  1369. * You're sharding your database.
  1370. If this is set to ``False``, accessing a related object that doesn't exist
  1371. will raise its ``DoesNotExist`` exception.
  1372. .. attribute:: ForeignKey.swappable
  1373. Controls the migration framework's reaction if this :class:`ForeignKey`
  1374. is pointing at a swappable model. If it is ``True`` - the default -
  1375. then if the :class:`ForeignKey` is pointing at a model which matches
  1376. the current value of ``settings.AUTH_USER_MODEL`` (or another swappable
  1377. model setting) the relationship will be stored in the migration using
  1378. a reference to the setting, not to the model directly.
  1379. You only want to override this to be ``False`` if you are sure your
  1380. model should always point toward the swapped-in model - for example,
  1381. if it is a profile model designed specifically for your custom user model.
  1382. Setting it to ``False`` does not mean you can reference a swappable model
  1383. even if it is swapped out - ``False`` means that the migrations made
  1384. with this ForeignKey will always reference the exact model you specify
  1385. (so it will fail hard if the user tries to run with a User model you don't
  1386. support, for example).
  1387. If in doubt, leave it to its default of ``True``.
  1388. ``ManyToManyField``
  1389. -------------------
  1390. .. class:: ManyToManyField(to, **options)
  1391. A many-to-many relationship. Requires a positional argument: the class to
  1392. which the model is related, which works exactly the same as it does for
  1393. :class:`ForeignKey`, including :ref:`recursive <recursive-relationships>` and
  1394. :ref:`lazy <lazy-relationships>` relationships.
  1395. Related objects can be added, removed, or created with the field's
  1396. :class:`~django.db.models.fields.related.RelatedManager`.
  1397. Database Representation
  1398. ~~~~~~~~~~~~~~~~~~~~~~~
  1399. Behind the scenes, Django creates an intermediary join table to represent the
  1400. many-to-many relationship. By default, this table name is generated using the
  1401. name of the many-to-many field and the name of the table for the model that
  1402. contains it. Since some databases don't support table names above a certain
  1403. length, these table names will be automatically truncated and a uniqueness hash
  1404. will be used, e.g. ``author_books_9cdf``. You can manually provide the name of
  1405. the join table using the :attr:`~ManyToManyField.db_table` option.
  1406. .. _manytomany-arguments:
  1407. Arguments
  1408. ~~~~~~~~~
  1409. :class:`ManyToManyField` accepts an extra set of arguments -- all optional --
  1410. that control how the relationship functions.
  1411. .. attribute:: ManyToManyField.related_name
  1412. Same as :attr:`ForeignKey.related_name`.
  1413. .. attribute:: ManyToManyField.related_query_name
  1414. Same as :attr:`ForeignKey.related_query_name`.
  1415. .. attribute:: ManyToManyField.limit_choices_to
  1416. Same as :attr:`ForeignKey.limit_choices_to`.
  1417. .. attribute:: ManyToManyField.symmetrical
  1418. Only used in the definition of ManyToManyFields on self. Consider the
  1419. following model::
  1420. from django.db import models
  1421. class Person(models.Model):
  1422. friends = models.ManyToManyField("self")
  1423. When Django processes this model, it identifies that it has a
  1424. :class:`ManyToManyField` on itself, and as a result, it doesn't add a
  1425. ``person_set`` attribute to the ``Person`` class. Instead, the
  1426. :class:`ManyToManyField` is assumed to be symmetrical -- that is, if I am
  1427. your friend, then you are my friend.
  1428. If you do not want symmetry in many-to-many relationships with ``self``, set
  1429. :attr:`~ManyToManyField.symmetrical` to ``False``. This will force Django to
  1430. add the descriptor for the reverse relationship, allowing
  1431. :class:`ManyToManyField` relationships to be non-symmetrical.
  1432. .. attribute:: ManyToManyField.through
  1433. Django will automatically generate a table to manage many-to-many
  1434. relationships. However, if you want to manually specify the intermediary
  1435. table, you can use the :attr:`~ManyToManyField.through` option to specify
  1436. the Django model that represents the intermediate table that you want to
  1437. use.
  1438. The most common use for this option is when you want to associate
  1439. :ref:`extra data with a many-to-many relationship
  1440. <intermediary-manytomany>`.
  1441. .. note::
  1442. If you don't want multiple associations between the same instances, add
  1443. a :class:`~django.db.models.UniqueConstraint` including the from and to
  1444. fields. Django's automatically generated many-to-many tables include
  1445. such a constraint.
  1446. .. note::
  1447. Recursive relationships using an intermediary model can't determine the
  1448. reverse accessors names, as they would be the same. You need to set a
  1449. :attr:`~ForeignKey.related_name` to at least one of them. If you'd
  1450. prefer Django not to create a backwards relation, set ``related_name``
  1451. to ``'+'``.
  1452. If you don't specify an explicit ``through`` model, there is still an
  1453. implicit ``through`` model class you can use to directly access the table
  1454. created to hold the association. It has three fields to link the models.
  1455. If the source and target models differ, the following fields are
  1456. generated:
  1457. * ``id``: the primary key of the relation.
  1458. * ``<containing_model>_id``: the ``id`` of the model that declares the
  1459. ``ManyToManyField``.
  1460. * ``<other_model>_id``: the ``id`` of the model that the
  1461. ``ManyToManyField`` points to.
  1462. If the ``ManyToManyField`` points from and to the same model, the following
  1463. fields are generated:
  1464. * ``id``: the primary key of the relation.
  1465. * ``from_<model>_id``: the ``id`` of the instance which points at the
  1466. model (i.e. the source instance).
  1467. * ``to_<model>_id``: the ``id`` of the instance to which the relationship
  1468. points (i.e. the target model instance).
  1469. This class can be used to query associated records for a given model
  1470. instance like a normal model::
  1471. Model.m2mfield.through.objects.all()
  1472. .. attribute:: ManyToManyField.through_fields
  1473. Only used when a custom intermediary model is specified. Django will
  1474. normally determine which fields of the intermediary model to use in order
  1475. to establish a many-to-many relationship automatically. However,
  1476. consider the following models::
  1477. from django.db import models
  1478. class Person(models.Model):
  1479. name = models.CharField(max_length=50)
  1480. class Group(models.Model):
  1481. name = models.CharField(max_length=128)
  1482. members = models.ManyToManyField(
  1483. Person,
  1484. through="Membership",
  1485. through_fields=("group", "person"),
  1486. )
  1487. class Membership(models.Model):
  1488. group = models.ForeignKey(Group, on_delete=models.CASCADE)
  1489. person = models.ForeignKey(Person, on_delete=models.CASCADE)
  1490. inviter = models.ForeignKey(
  1491. Person,
  1492. on_delete=models.CASCADE,
  1493. related_name="membership_invites",
  1494. )
  1495. invite_reason = models.CharField(max_length=64)
  1496. ``Membership`` has *two* foreign keys to ``Person`` (``person`` and
  1497. ``inviter``), which makes the relationship ambiguous and Django can't know
  1498. which one to use. In this case, you must explicitly specify which
  1499. foreign keys Django should use using ``through_fields``, as in the example
  1500. above.
  1501. ``through_fields`` accepts a 2-tuple ``('field1', 'field2')``, where
  1502. ``field1`` is the name of the foreign key to the model the
  1503. :class:`ManyToManyField` is defined on (``group`` in this case), and
  1504. ``field2`` the name of the foreign key to the target model (``person``
  1505. in this case).
  1506. When you have more than one foreign key on an intermediary model to any
  1507. (or even both) of the models participating in a many-to-many relationship,
  1508. you *must* specify ``through_fields``. This also applies to
  1509. :ref:`recursive relationships <recursive-relationships>`
  1510. when an intermediary model is used and there are more than two
  1511. foreign keys to the model, or you want to explicitly specify which two
  1512. Django should use.
  1513. .. attribute:: ManyToManyField.db_table
  1514. The name of the table to create for storing the many-to-many data. If this
  1515. is not provided, Django will assume a default name based upon the names of:
  1516. the table for the model defining the relationship and the name of the field
  1517. itself.
  1518. .. attribute:: ManyToManyField.db_constraint
  1519. Controls whether or not constraints should be created in the database for
  1520. the foreign keys in the intermediary table. The default is ``True``, and
  1521. that's almost certainly what you want; setting this to ``False`` can be
  1522. very bad for data integrity. That said, here are some scenarios where you
  1523. might want to do this:
  1524. * You have legacy data that is not valid.
  1525. * You're sharding your database.
  1526. It is an error to pass both ``db_constraint`` and ``through``.
  1527. .. attribute:: ManyToManyField.swappable
  1528. Controls the migration framework's reaction if this :class:`ManyToManyField`
  1529. is pointing at a swappable model. If it is ``True`` - the default -
  1530. then if the :class:`ManyToManyField` is pointing at a model which matches
  1531. the current value of ``settings.AUTH_USER_MODEL`` (or another swappable
  1532. model setting) the relationship will be stored in the migration using
  1533. a reference to the setting, not to the model directly.
  1534. You only want to override this to be ``False`` if you are sure your
  1535. model should always point toward the swapped-in model - for example,
  1536. if it is a profile model designed specifically for your custom user model.
  1537. If in doubt, leave it to its default of ``True``.
  1538. :class:`ManyToManyField` does not support :attr:`~Field.validators`.
  1539. :attr:`~Field.null` has no effect since there is no way to require a
  1540. relationship at the database level.
  1541. ``OneToOneField``
  1542. -----------------
  1543. .. class:: OneToOneField(to, on_delete, parent_link=False, **options)
  1544. A one-to-one relationship. Conceptually, this is similar to a
  1545. :class:`ForeignKey` with :attr:`unique=True <Field.unique>`, but the
  1546. "reverse" side of the relation will directly return a single object.
  1547. This is most useful as the primary key of a model which "extends"
  1548. another model in some way; :ref:`multi-table-inheritance` is
  1549. implemented by adding an implicit one-to-one relation from the child
  1550. model to the parent model, for example.
  1551. One positional argument is required: the class to which the model will be
  1552. related. This works exactly the same as it does for :class:`ForeignKey`,
  1553. including all the options regarding :ref:`recursive <recursive-relationships>`
  1554. and :ref:`lazy <lazy-relationships>` relationships.
  1555. If you do not specify the :attr:`~ForeignKey.related_name` argument for the
  1556. ``OneToOneField``, Django will use the lowercase name of the current model as
  1557. default value.
  1558. With the following example::
  1559. from django.conf import settings
  1560. from django.db import models
  1561. class MySpecialUser(models.Model):
  1562. user = models.OneToOneField(
  1563. settings.AUTH_USER_MODEL,
  1564. on_delete=models.CASCADE,
  1565. )
  1566. supervisor = models.OneToOneField(
  1567. settings.AUTH_USER_MODEL,
  1568. on_delete=models.CASCADE,
  1569. related_name="supervisor_of",
  1570. )
  1571. your resulting ``User`` model will have the following attributes:
  1572. .. code-block:: pycon
  1573. >>> user = User.objects.get(pk=1)
  1574. >>> hasattr(user, "myspecialuser")
  1575. True
  1576. >>> hasattr(user, "supervisor_of")
  1577. True
  1578. A ``RelatedObjectDoesNotExist`` exception is raised when accessing the reverse
  1579. relationship if an entry in the related table doesn't exist. This is a subclass
  1580. of the target model's :exc:`Model.DoesNotExist
  1581. <django.db.models.Model.DoesNotExist>` exception and can be accessed as an
  1582. attribute of the reverse accessor. For example, if a user doesn't have a
  1583. supervisor designated by ``MySpecialUser``::
  1584. try:
  1585. user.supervisor_of
  1586. except User.supervisor_of.RelatedObjectDoesNotExist:
  1587. pass
  1588. .. _onetoone-arguments:
  1589. Additionally, ``OneToOneField`` accepts all of the extra arguments
  1590. accepted by :class:`ForeignKey`, plus one extra argument:
  1591. .. attribute:: OneToOneField.parent_link
  1592. When ``True`` and used in a model which inherits from another
  1593. :term:`concrete model`, indicates that this field should be used as the
  1594. link back to the parent class, rather than the extra
  1595. ``OneToOneField`` which would normally be implicitly created by
  1596. subclassing.
  1597. See :doc:`One-to-one relationships </topics/db/examples/one_to_one>` for usage
  1598. examples of ``OneToOneField``.
  1599. Field API reference
  1600. ===================
  1601. .. class:: Field
  1602. ``Field`` is an abstract class that represents a database table column.
  1603. Django uses fields to create the database table (:meth:`db_type`), to map
  1604. Python types to database (:meth:`get_prep_value`) and vice-versa
  1605. (:meth:`from_db_value`).
  1606. A field is thus a fundamental piece in different Django APIs, notably,
  1607. :class:`models <django.db.models.Model>` and :class:`querysets
  1608. <django.db.models.query.QuerySet>`.
  1609. In models, a field is instantiated as a class attribute and represents a
  1610. particular table column, see :doc:`/topics/db/models`. It has attributes
  1611. such as :attr:`null` and :attr:`unique`, and methods that Django uses to
  1612. map the field value to database-specific values.
  1613. A ``Field`` is a subclass of
  1614. :class:`~django.db.models.lookups.RegisterLookupMixin` and thus both
  1615. :class:`~django.db.models.Transform` and
  1616. :class:`~django.db.models.Lookup` can be registered on it to be used
  1617. in ``QuerySet``\s (e.g. ``field_name__exact="foo"``). All :ref:`built-in
  1618. lookups <field-lookups>` are registered by default.
  1619. All of Django's built-in fields, such as :class:`CharField`, are particular
  1620. implementations of ``Field``. If you need a custom field, you can either
  1621. subclass any of the built-in fields or write a ``Field`` from scratch. In
  1622. either case, see :doc:`/howto/custom-model-fields`.
  1623. .. attribute:: description
  1624. A verbose description of the field, e.g. for the
  1625. :mod:`django.contrib.admindocs` application.
  1626. The description can be of the form::
  1627. description = _("String (up to %(max_length)s)")
  1628. where the arguments are interpolated from the field's ``__dict__``.
  1629. .. attribute:: descriptor_class
  1630. A class implementing the :py:ref:`descriptor protocol <descriptors>`
  1631. that is instantiated and assigned to the model instance attribute. The
  1632. constructor must accept a single argument, the ``Field`` instance.
  1633. Overriding this class attribute allows for customizing the get and set
  1634. behavior.
  1635. To map a ``Field`` to a database-specific type, Django exposes several
  1636. methods:
  1637. .. method:: get_internal_type()
  1638. Returns a string naming this field for backend specific purposes.
  1639. By default, it returns the class name.
  1640. See :ref:`emulating-built-in-field-types` for usage in custom fields.
  1641. .. method:: db_type(connection)
  1642. Returns the database column data type for the :class:`Field`, taking
  1643. into account the ``connection``.
  1644. See :ref:`custom-database-types` for usage in custom fields.
  1645. .. method:: rel_db_type(connection)
  1646. Returns the database column data type for fields such as ``ForeignKey``
  1647. and ``OneToOneField`` that point to the :class:`Field`, taking
  1648. into account the ``connection``.
  1649. See :ref:`custom-database-types` for usage in custom fields.
  1650. There are three main situations where Django needs to interact with the
  1651. database backend and fields:
  1652. * when it queries the database (Python value -> database backend value)
  1653. * when it loads data from the database (database backend value -> Python
  1654. value)
  1655. * when it saves to the database (Python value -> database backend value)
  1656. When querying, :meth:`get_db_prep_value` and :meth:`get_prep_value` are used:
  1657. .. method:: get_prep_value(value)
  1658. ``value`` is the current value of the model's attribute, and the method
  1659. should return data in a format that has been prepared for use as a
  1660. parameter in a query.
  1661. See :ref:`converting-python-objects-to-query-values` for usage.
  1662. .. method:: get_db_prep_value(value, connection, prepared=False)
  1663. Converts ``value`` to a backend-specific value. By default it returns
  1664. ``value`` if ``prepared=True`` and :meth:`~Field.get_prep_value` if is
  1665. ``False``.
  1666. See :ref:`converting-query-values-to-database-values` for usage.
  1667. When loading data, :meth:`from_db_value` is used:
  1668. .. method:: from_db_value(value, expression, connection)
  1669. Converts a value as returned by the database to a Python object. It is
  1670. the reverse of :meth:`get_prep_value`.
  1671. This method is not used for most built-in fields as the database
  1672. backend already returns the correct Python type, or the backend itself
  1673. does the conversion.
  1674. ``expression`` is the same as ``self``.
  1675. See :ref:`converting-values-to-python-objects` for usage.
  1676. .. note::
  1677. For performance reasons, ``from_db_value`` is not implemented as a
  1678. no-op on fields which do not require it (all Django fields).
  1679. Consequently you may not call ``super`` in your definition.
  1680. When saving, :meth:`pre_save` and :meth:`get_db_prep_save` are used:
  1681. .. method:: get_db_prep_save(value, connection)
  1682. Same as the :meth:`get_db_prep_value`, but called when the field value
  1683. must be *saved* to the database. By default returns
  1684. :meth:`get_db_prep_value`.
  1685. .. method:: pre_save(model_instance, add)
  1686. Method called prior to :meth:`get_db_prep_save` to prepare the value
  1687. before being saved (e.g. for :attr:`DateField.auto_now`).
  1688. ``model_instance`` is the instance this field belongs to and ``add``
  1689. is whether the instance is being saved to the database for the first
  1690. time.
  1691. It should return the value of the appropriate attribute from
  1692. ``model_instance`` for this field. The attribute name is in
  1693. ``self.attname`` (this is set up by :class:`~django.db.models.Field`).
  1694. See :ref:`preprocessing-values-before-saving` for usage.
  1695. Fields often receive their values as a different type, either from
  1696. serialization or from forms.
  1697. .. method:: to_python(value)
  1698. Converts the value into the correct Python object. It acts as the
  1699. reverse of :meth:`value_to_string`, and is also called in
  1700. :meth:`~django.db.models.Model.clean`.
  1701. See :ref:`converting-values-to-python-objects` for usage.
  1702. Besides saving to the database, the field also needs to know how to
  1703. serialize its value:
  1704. .. method:: value_from_object(obj)
  1705. Returns the field's value for the given model instance.
  1706. This method is often used by :meth:`value_to_string`.
  1707. .. method:: value_to_string(obj)
  1708. Converts ``obj`` to a string. Used to serialize the value of the field.
  1709. See :ref:`converting-model-field-to-serialization` for usage.
  1710. When using :class:`model forms <django.forms.ModelForm>`, the ``Field``
  1711. needs to know which form field it should be represented by:
  1712. .. method:: formfield(form_class=None, choices_form_class=None, **kwargs)
  1713. Returns the default :class:`django.forms.Field` of this field for
  1714. :class:`~django.forms.ModelForm`.
  1715. By default, if both ``form_class`` and ``choices_form_class`` are
  1716. ``None``, it uses :class:`~django.forms.CharField`. If the field has
  1717. :attr:`~django.db.models.Field.choices` and ``choices_form_class``
  1718. isn't specified, it uses :class:`~django.forms.TypedChoiceField`.
  1719. See :ref:`specifying-form-field-for-model-field` for usage.
  1720. .. method:: deconstruct()
  1721. Returns a 4-tuple with enough information to recreate the field:
  1722. 1. The name of the field on the model.
  1723. 2. The import path of the field (e.g. ``"django.db.models.IntegerField"``).
  1724. This should be the most portable version, so less specific may be better.
  1725. 3. A list of positional arguments.
  1726. 4. A dict of keyword arguments.
  1727. This method must be added to fields prior to 1.7 to migrate its data
  1728. using :doc:`/topics/migrations`.
  1729. Registering and fetching lookups
  1730. ================================
  1731. ``Field`` implements the :ref:`lookup registration API <lookup-registration-api>`.
  1732. The API can be used to customize which lookups are available for a field class
  1733. and its instances, and how lookups are fetched from a field.
  1734. .. _model-field-attributes:
  1735. =========================
  1736. Field attribute reference
  1737. =========================
  1738. Every ``Field`` instance contains several attributes that allow
  1739. introspecting its behavior. Use these attributes instead of ``isinstance``
  1740. checks when you need to write code that depends on a field's functionality.
  1741. These attributes can be used together with the :ref:`Model._meta API
  1742. <model-meta-field-api>` to narrow down a search for specific field types.
  1743. Custom model fields should implement these flags.
  1744. Attributes for fields
  1745. =====================
  1746. .. attribute:: Field.auto_created
  1747. Boolean flag that indicates if the field was automatically created, such
  1748. as the ``OneToOneField`` used by model inheritance.
  1749. .. attribute:: Field.concrete
  1750. Boolean flag that indicates if the field has a database column associated
  1751. with it.
  1752. .. attribute:: Field.hidden
  1753. Boolean flag that indicates if a field is hidden and should not be returned
  1754. by :meth:`Options.get_fields()
  1755. <django.db.models.options.Options.get_fields>` by default. An example is
  1756. the reverse field for a :class:`~django.db.models.ForeignKey` with a
  1757. ``related_name`` that starts with ``'+'``.
  1758. .. attribute:: Field.is_relation
  1759. Boolean flag that indicates if a field contains references to one or
  1760. more other models for its functionality (e.g. ``ForeignKey``,
  1761. ``ManyToManyField``, ``OneToOneField``, etc.).
  1762. .. attribute:: Field.model
  1763. Returns the model on which the field is defined. If a field is defined on
  1764. a superclass of a model, ``model`` will refer to the superclass, not the
  1765. class of the instance.
  1766. Attributes for fields with relations
  1767. ====================================
  1768. These attributes are used to query for the cardinality and other details of a
  1769. relation. These attribute are present on all fields; however, they will only
  1770. have boolean values (rather than ``None``) if the field is a relation type
  1771. (:attr:`Field.is_relation=True <Field.is_relation>`).
  1772. .. attribute:: Field.many_to_many
  1773. Boolean flag that is ``True`` if the field has a many-to-many relation;
  1774. ``False`` otherwise. The only field included with Django where this is
  1775. ``True`` is ``ManyToManyField``.
  1776. .. attribute:: Field.many_to_one
  1777. Boolean flag that is ``True`` if the field has a many-to-one relation, such
  1778. as a ``ForeignKey``; ``False`` otherwise.
  1779. .. attribute:: Field.one_to_many
  1780. Boolean flag that is ``True`` if the field has a one-to-many relation, such
  1781. as a ``GenericRelation`` or the reverse of a ``ForeignKey``; ``False``
  1782. otherwise.
  1783. .. attribute:: Field.one_to_one
  1784. Boolean flag that is ``True`` if the field has a one-to-one relation, such
  1785. as a ``OneToOneField``; ``False`` otherwise.
  1786. .. attribute:: Field.related_model
  1787. Points to the model the field relates to. For example, ``Author`` in
  1788. ``ForeignKey(Author, on_delete=models.CASCADE)``. The ``related_model`` for
  1789. a ``GenericForeignKey`` is always ``None``.