mirror of
https://github.com/django/django.git
synced 2025-11-02 04:48:33 +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
|
|
@ -51,6 +51,9 @@ class BigD(models.Model):
|
|||
class BigS(models.Model):
|
||||
s = models.SlugField(max_length=255)
|
||||
|
||||
class BigInt(models.Model):
|
||||
value = models.BigIntegerField()
|
||||
null_value = models.BigIntegerField(null = True, blank = True)
|
||||
|
||||
###############################################################################
|
||||
# ImageField
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue