mirror of https://github.com/django/django.git
Fixed #15772 -- Corrected an oversight from r16016 in MySQL GeoDjango DB backend. Thanks JannKleen for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16021 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
91e59aeca0
commit
b7715b4ae6
|
@ -9,5 +9,5 @@ class DatabaseWrapper(MySQLDatabaseWrapper):
|
|||
def __init__(self, *args, **kwargs):
|
||||
super(DatabaseWrapper, self).__init__(*args, **kwargs)
|
||||
self.creation = MySQLCreation(self)
|
||||
self.ops = MySQLOperations()
|
||||
self.ops = MySQLOperations(self)
|
||||
self.introspection = MySQLIntrospection(self)
|
||||
|
|
Loading…
Reference in New Issue