Commit c63372f3 authored by Adrian Holovaty's avatar Adrian Holovaty
Browse files

Fixed #1819 -- inspectdb no longer puts null=True for TextField and CharField. Thanks, mir@noris.de

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2872 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 6341b43d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -760,7 +760,7 @@ def inspectdb():
            # table description.
            if row[6]: # If it's NULL...
                extra_params['blank'] = True
                if not field_type in ('TextField', 'CharField'):
                if not field_type in ('TextField(', 'CharField('):
                    extra_params['null'] = True

            field_desc = '%s = models.%s' % (att_name, field_type)