diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-08-19 23:59:06 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-08-19 23:59:06 +0000 |
| commit | aaf87602272c768d4d50d5e9a27f06f4b19164dd (patch) | |
| tree | dcbfe5dc1bd9f978f86f027bd306886429736819 /django/db/backends/postgresql/base.py | |
| parent | e4b7e369ddc511dac78e1bf735e927c5fe0afe68 (diff) | |
Refactored get_pk_default_value() to DatabaseOperations.pk_default_value(). Refs #5106
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5961 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/backends/postgresql/base.py')
| -rw-r--r-- | django/db/backends/postgresql/base.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/django/db/backends/postgresql/base.py b/django/db/backends/postgresql/base.py index 9193e532c8..fee127ec90 100644 --- a/django/db/backends/postgresql/base.py +++ b/django/db/backends/postgresql/base.py @@ -134,9 +134,6 @@ def dictfetchall(cursor): def get_random_function_sql(): return "RANDOM()" -def get_pk_default_value(): - return "DEFAULT" - def get_start_transaction_sql(): return "BEGIN;" |
