summaryrefslogtreecommitdiff
path: root/django/db/backends/postgresql/base.py
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-08-19 23:07:34 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-08-19 23:07:34 +0000
commit23a736dca9b2a631e841a9daff067558206e7965 (patch)
treef58eafffed997a5d7dcacaa89aa004933224769d /django/db/backends/postgresql/base.py
parent8e84d35d38d429fb00a35fd4f770ade39d7772ec (diff)
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
Diffstat (limited to 'django/db/backends/postgresql/base.py')
-rw-r--r--django/db/backends/postgresql/base.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/django/db/backends/postgresql/base.py b/django/db/backends/postgresql/base.py
index 4fec530b5b..b51501f570 100644
--- a/django/db/backends/postgresql/base.py
+++ b/django/db/backends/postgresql/base.py
@@ -143,9 +143,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"