mirror of
https://github.com/django/django.git
synced 2025-09-16 23:45:38 +00:00
Fixed #2108 -- allow saving of empty models, rather than just dropping them.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3115 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
29f55c8dbb
commit
7e2b888a2d
7 changed files with 24 additions and 0 deletions
|
@ -158,6 +158,9 @@ def get_fulltext_search_sql(field_name):
|
|||
def get_drop_foreignkey_sql():
|
||||
return "DROP FOREIGN KEY"
|
||||
|
||||
def get_pk_default_value():
|
||||
return "DEFAULT"
|
||||
|
||||
OPERATOR_MAPPING = {
|
||||
'exact': '= %s',
|
||||
'iexact': 'LIKE %s',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue