Changes between Initial Version and Version 2 of Ticket #11998


Ignore:
Timestamp:
Oct 8, 2009, 11:14:19 AM (15 years ago)
Author:
Alex Gaynor
Comment:

Please use preview.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11998 – Description

    initial v2  
    11Let be this small model :
    2 
     2{{{
    33class IntegerOverflowTest(models.Model):
    44    someint = models.IntegerField()
    5 
     5}}}
    66For mysql, maximum values for signed integer is 2147483647 [1]
    77
    88In admin interface, defining a value more than the maximum raises this exception :
    9 
     9{{{
    1010    Warning : Out of range value for column 'someint' at row 1
    11 
     11}}}
    1212I would have expected that the form to be validated and prompt the error gracefully.
    1313
Back to Top