mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed #399: Added big integer field. Thanks to Tomáš Kopeček for persistently maintaining a patch for this.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11887 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
fd4cc65baf
commit
5bd63663a9
20 changed files with 125 additions and 18 deletions
|
@ -46,6 +46,10 @@ the full list of conversions:
|
|||
=============================== ========================================
|
||||
``AutoField`` Not represented in the form
|
||||
|
||||
``BigIntegerField`` ``IntegerField`` with ``min_value`` set
|
||||
to -9223372036854775808 and ``max_value``
|
||||
set to 9223372036854775807.
|
||||
|
||||
``BooleanField`` ``BooleanField``
|
||||
|
||||
``CharField`` ``CharField`` with ``max_length`` set to
|
||||
|
@ -108,6 +112,10 @@ the full list of conversions:
|
|||
The ``FloatField`` form field and ``DecimalField`` model and form fields
|
||||
are new in Django 1.0.
|
||||
|
||||
.. versionadded:: 1.2
|
||||
The ``BigIntegerField`` is new in Django 1.2.
|
||||
|
||||
|
||||
As you might expect, the ``ForeignKey`` and ``ManyToManyField`` model field
|
||||
types are special cases:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue