From f4e4ae96cb69d616af6f7009512cdcd2cb7c1e39 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 2 Aug 2005 22:33:39 +0000 Subject: Improved 'django-admin inspectdb' so that it detects ForeignKey relationships -- PostgreSQL only git-svn-id: http://code.djangoproject.com/svn/django/trunk@395 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/db/backends/sqlite3.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'django/core/db/backends/sqlite3.py') diff --git a/django/core/db/backends/sqlite3.py b/django/core/db/backends/sqlite3.py index b719b8f8cd..38ce767dfb 100644 --- a/django/core/db/backends/sqlite3.py +++ b/django/core/db/backends/sqlite3.py @@ -112,6 +112,9 @@ def _sqlite_date_trunc(lookup_type, dt): def get_table_list(cursor): raise NotImplementedError +def get_relations(cursor, table_name): + raise NotImplementedError + # Operators and fields ######################################################## OPERATOR_MAPPING = { -- cgit v1.3