From 63009faa141273726d124863053e3b5ab298c4f5 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 26 Jul 2005 16:26:48 +0000 Subject: [PATCH] Added 'ne' lookup type to docs/db-api git-svn-id: http://code.djangoproject.com/svn/django/trunk@317 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/db-api.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/db-api.txt b/docs/db-api.txt index cb5ec4783f..548af52a71 100644 --- a/docs/db-api.txt +++ b/docs/db-api.txt @@ -66,6 +66,7 @@ The DB API supports the following lookup types: gte Greater than or equal to. lt Less than. lte Less than or equal to. + ne Not equal to. startswith Case-sensitive starts-with: ``polls.get_list(question_startswith="Would")``. (PostgreSQL only. MySQL doesn't support case-sensitive LIKE statements;