mirror of
https://github.com/Hopiu/django.git
synced 2026-05-10 00:24:45 +00:00
Removed unused foreign_key_re variables in MySQL/Oracle DB backends
This commit is contained in:
parent
b8d6cdbcc9
commit
e9282747a4
2 changed files with 0 additions and 6 deletions
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue