summaryrefslogtreecommitdiff
path: root/django/db/backends/sqlite3
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2017-05-23 15:09:35 +0200
committerTim Graham <timograham@gmail.com>2017-05-23 09:09:35 -0400
commitb3eb6eaf1a197ff155faf333871da032c77ba855 (patch)
tree185f965059811b862e4a0f4372a3db4918911beb /django/db/backends/sqlite3
parent5dc6f77423084dd7c99549b1e477ee573802f5a4 (diff)
Refs #27859 -- Added DatabaseWrapper.display_name.
Thanks Tim Graham for the review.
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 7806402055..5892de92f8 100644
--- a/django/db/backends/sqlite3/base.py
+++ b/django/db/backends/sqlite3/base.py
@@ -45,6 +45,7 @@ Database.register_adapter(decimal.Decimal, backend_utils.rev_typecast_decimal)
class DatabaseWrapper(BaseDatabaseWrapper):
vendor = 'sqlite'
+ display_name = 'SQLite'
# SQLite doesn't actually support most of these types, but it "does the right
# thing" given more verbose field definitions, so leave them as is so that
# schema inspection is more useful.