diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-08-19 23:53:39 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-08-19 23:53:39 +0000 |
| commit | e4b7e369ddc511dac78e1bf735e927c5fe0afe68 (patch) | |
| tree | 95748d3b84ed84d61b842e4e3e5ed7cbc596acb3 /django/db/backends/sqlite3 | |
| parent | d3e69c3a47dd9fc7c36414c029d9919b84b0b822 (diff) | |
Refactored get_max_name_length() to DatabaseOperations.max_name_length(). Refs #5106
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5960 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/backends/sqlite3')
| -rw-r--r-- | django/db/backends/sqlite3/base.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/django/db/backends/sqlite3/base.py b/django/db/backends/sqlite3/base.py index 75c753ef22..ad792e1fa0 100644 --- a/django/db/backends/sqlite3/base.py +++ b/django/db/backends/sqlite3/base.py @@ -121,9 +121,6 @@ def get_random_function_sql(): def get_pk_default_value(): return "NULL" -def get_max_name_length(): - return None - def get_start_transaction_sql(): return "BEGIN;" |
