1
0
mirror of https://github.com/django/django.git synced 2025-10-26 07:06:08 +00:00

Refactored get_drop_foreignkey_sql() to DatabaseOperations.drop_foreignkey_sql(). Refs #5106

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5956 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty
2007-08-19 23:07:34 +00:00
parent 8e84d35d38
commit 23a736dca9
10 changed files with 16 additions and 23 deletions

View File

@@ -97,9 +97,6 @@ def get_random_function_sql():
def get_fulltext_search_sql(field_name):
raise NotImplementedError
def get_drop_foreignkey_sql():
return "DROP CONSTRAINT"
def get_pk_default_value():
return "DEFAULT"