Refs #27859 -- Added DatabaseWrapper.display_name.

Thanks Tim Graham for the review.
This commit is contained in:
Mariusz Felisiak 2017-05-23 15:09:35 +02:00 committed by Tim Graham
parent 5dc6f77423
commit b3eb6eaf1a
7 changed files with 13 additions and 0 deletions

View file

@ -59,6 +59,7 @@ psycopg2.extensions.register_type(INETARRAY)
class DatabaseWrapper(BaseDatabaseWrapper):
vendor = 'postgresql'
display_name = 'PostgreSQL'
# This dictionary maps Field objects to their associated PostgreSQL column
# types, as strings. Column-type strings can contain format strings; they'll
# be interpolated against the values of Field.__dict__ before being output.