From 4f711eb5e3875a738262009a46f013c46b3dbc25 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Tue, 26 Aug 2008 08:58:07 +0000 Subject: [PATCH] Fixed #8347 -- Added a few missing field type conversion to SQLite's inspectdb handling. Patch from trbs. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8580 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/backends/sqlite3/introspection.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/django/db/backends/sqlite3/introspection.py b/django/db/backends/sqlite3/introspection.py index 5e26f33ea6..64475d5d95 100644 --- a/django/db/backends/sqlite3/introspection.py +++ b/django/db/backends/sqlite3/introspection.py @@ -11,9 +11,13 @@ class FlexibleFieldLookupDict: 'bool': 'BooleanField', 'boolean': 'BooleanField', 'smallint': 'SmallIntegerField', + 'smallint unsigned': 'PositiveSmallIntegerField', 'smallinteger': 'SmallIntegerField', 'int': 'IntegerField', 'integer': 'IntegerField', + 'integer unsigned': 'PositiveIntegerField', + 'decimal': 'DecimalField', + 'real': 'FloatField', 'text': 'TextField', 'char': 'CharField', 'date': 'DateField', @@ -34,7 +38,7 @@ class FlexibleFieldLookupDict: class DatabaseIntrospection(BaseDatabaseIntrospection): data_types_reverse = FlexibleFieldLookupDict() - + def get_table_list(self, cursor): "Returns a list of table names in the current database." # Skip the sqlite_sequence system table used for autoincrement key