Skip to content

Commit

Permalink
Fixed #1289 -- Improved 'inspectdb' to introspect decimal_places and …
Browse files Browse the repository at this point in the history
…max_digits for FloatFields. Thanks, gandalf@owca.info

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2356 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Feb 18, 2006
1 parent cf528aa commit 53ca15c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions django/core/management.py
Expand Up @@ -633,6 +633,10 @@ def table2model(table_name):
if field_type == 'CharField' and row[3]:
extra_params['maxlength'] = row[3]

if field_type == 'FloatField':
extra_params['max_digits'] = row[4]
extra_params['decimal_places'] = row[5]

# Add primary_key and unique, if necessary.
column_name = extra_params.get('db_column', att_name)
if column_name in indexes:
Expand Down

0 comments on commit 53ca15c

Please sign in to comment.