diff options
| author | Tom <tom@tomforb.es> | 2017-10-03 00:35:38 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-08-03 17:40:46 -0400 |
| commit | f1fbef6cd171ddfae41fcc901f1f60ccad039f51 (patch) | |
| tree | 414e5d00478371dd01e0bf69467cc32301260cb5 /django/db/backends/postgresql/features.py | |
| parent | 45086c294d63ac8787cebff2accd1680ac844138 (diff) | |
Fixed #28668 -- Allowed QuerySet.bulk_create() to ignore insert conflicts.
Diffstat (limited to 'django/db/backends/postgresql/features.py')
| -rw-r--r-- | django/db/backends/postgresql/features.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/db/backends/postgresql/features.py b/django/db/backends/postgresql/features.py index a2a231554f..7fbe4bae02 100644 --- a/django/db/backends/postgresql/features.py +++ b/django/db/backends/postgresql/features.py @@ -66,3 +66,4 @@ class DatabaseFeatures(BaseDatabaseFeatures): has_jsonb_agg = is_postgresql_9_5 has_brin_autosummarize = is_postgresql_10 has_gin_pending_list_limit = is_postgresql_9_5 + supports_ignore_conflicts = is_postgresql_9_5 |
