summaryrefslogtreecommitdiff
path: root/django/db/backends/sqlite3
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@oscaro.com>2014-06-06 00:29:24 +0200
committerAymeric Augustin <aymeric.augustin@oscaro.com>2014-06-06 00:31:22 +0200
commitc9aedce01ae54f26d612b070ded57d2cb3eb8483 (patch)
treede7ec25573c082c9a253e93a11379fe8416988bc /django/db/backends/sqlite3
parent1238f92c649ccd4ba99da0ce70be7597c90515d4 (diff)
Replaced an explicit vendor check by a feature flag.
Diffstat (limited to 'django/db/backends/sqlite3')
-rw-r--r--django/db/backends/sqlite3/base.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/django/db/backends/sqlite3/base.py b/django/db/backends/sqlite3/base.py
index 419b394429..e43ea328bf 100644
--- a/django/db/backends/sqlite3/base.py
+++ b/django/db/backends/sqlite3/base.py
@@ -105,6 +105,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
supports_foreign_keys = False
supports_check_constraints = False
autocommits_when_autocommit_is_off = True
+ can_introspect_decimal_field = False
can_introspect_positive_integer_field = True
can_introspect_small_integer_field = True
supports_transactions = True