Removed unused foreign_key_re variables in MySQL/Oracle DB backends

This commit is contained in:
Adam Chainz 2015-02-17 16:35:46 +00:00 committed by Tim Graham
parent b8d6cdbcc9
commit e9282747a4
2 changed files with 0 additions and 6 deletions

View File

@ -1,4 +1,3 @@
import re
from collections import namedtuple
from MySQLdb.constants import FIELD_TYPE
@ -11,7 +10,6 @@ from django.utils.encoding import force_text
FieldInfo = namedtuple('FieldInfo', FieldInfo._fields + ('extra', 'default'))
InfoLine = namedtuple('InfoLine', 'col_name data_type max_len num_prec num_scale extra column_default')
foreign_key_re = re.compile(r"\sCONSTRAINT `[^`]*` FOREIGN KEY \(`([^`]*)`\) REFERENCES `([^`]*)` \(`([^`]*)`\)")
class DatabaseIntrospection(BaseDatabaseIntrospection):

View File

@ -1,5 +1,3 @@
import re
import cx_Oracle
from django.db.backends.base.introspection import (
@ -7,8 +5,6 @@ from django.db.backends.base.introspection import (
)
from django.utils.encoding import force_text
foreign_key_re = re.compile(r"\sCONSTRAINT `[^`]*` FOREIGN KEY \(`([^`]*)`\) REFERENCES `([^`]*)` \(`([^`]*)`\)")
class DatabaseIntrospection(BaseDatabaseIntrospection):
# Maps type objects to Django Field types.