From b3eb6eaf1a197ff155faf333871da032c77ba855 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Tue, 23 May 2017 15:09:35 +0200 Subject: Refs #27859 -- Added DatabaseWrapper.display_name. Thanks Tim Graham for the review. --- django/db/backends/sqlite3/base.py | 1 + 1 file changed, 1 insertion(+) (limited to 'django/db/backends/sqlite3') 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. -- cgit v1.3