summaryrefslogtreecommitdiff
path: root/django/contrib/postgres/apps.py
Commit message (Collapse)AuthorAgeFilesLines
* Refs #33308 -- Moved psycopg2 imports to the psycopg_any module.Florian Apolloner2022-12-121-4/+1
|
* Fixed #33788 -- Added TrigramStrictWordSimilarity() and ↵Matt Brewer2022-06-171-1/+11
| | | | TrigramStrictWordDistance() on PostgreSQL.
* Prevented initialization of unused database connections.Florian Apolloner2022-03-171-1/+1
|
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-14/+18
|
* Refs #20349 -- Avoided loading testing libraries when not needed.Collin Anderson2022-01-251-1/+1
|
* Fixed #32492 -- Added TrigramWordSimilarity() and TrigramWordDistance() on ↵Nikita Marchant2021-09-171-1/+5
| | | | PostgreSQL.
* Fixed #26167 -- Added support for functional indexes.Hannes Ljungberg2021-01-131-1/+5
| | | | | | Thanks Simon Charette, Mads Jensen, and Mariusz Felisiak for reviews. Co-authored-by: Markus Holtermann <info@markusholtermann.eu>
* Fixed #12990, Refs #27694 -- Added JSONField model field.sage2020-05-081-1/+0
| | | | | | | | | | | Thanks to Adam Johnson, Carlton Gibson, Mariusz Felisiak, and Raphael Michel for mentoring this Google Summer of Code 2019 project and everyone else who helped with the patch. Special thanks to Mads Jensen, Nick Pope, and Simon Charette for extensive reviews. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
* Fixed #29738 -- Allowed serializing psycopg2 range types in migrations.can2019-01-111-0/+10
|
* Fixed #29945 -- Moved contrib.postgres uninstallation logic to the app config.Simon Charette2018-11-121-0/+21
|
* Fixed #29598 -- Deprecated FloatRangeField in favor of DecimalRangeField.Stefano Chiodino2018-10-021-1/+1
|
* Fixed #29307 -- Fixed inspectdb import paths for django.contrib.postgres fields.Alasdair Nicol2018-04-101-6/+6
| | | | Thanks erindy for the report.
* Refs #24928 -- Added introspection support for PostgreSQL RangeFieldClaude Paroz2017-09-091-0/+5
|
* Refs #24928 -- Added introspection support for PostgreSQL JSONFieldClaude Paroz2017-09-091-2/+6
| | | | Thanks Adam Johnson and Tim Graham for the reviews.
* Fixed #28161 -- Fixed return type of ArrayField(CITextField()).Simon Charette2017-05-041-3/+3
| | | | Thanks Tim for the review.
* Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz2017-02-071-1/+1
| | | | Thanks Tim Graham for the review.
* Fixed #25454 -- Ensured register_hstore_handler is called for all connectionsClaude Paroz2016-07-211-0/+5
| | | | Thanks Simon Charette for help with the patch.
* Fixed #24938 -- Added PostgreSQL trigram support.Matthew Somerville2016-05-131-1/+3
|
* Refs #3254 -- Added full text search to contrib.postgres.Marc Tamlyn2016-04-221-1/+3
| | | | | | | | | | Adds a reasonably feature complete implementation of full text search using the built in PostgreSQL engine. It uses public APIs from Expression and Lookup. With thanks to Tim Graham, Simon Charettes, Josh Smeaton, Mikey Ariel and many others for their advice and review. Particular thanks also go to the supporters of the contrib.postgres kickstarter.
* Fixed #23423 -- Added unaccent lookup in django.contrib.postgresThomas Chaumeny2014-11-281-0/+4
|
* Added HStoreField.Marc Tamlyn2014-11-041-0/+13
Thanks to `django-hstore` for inspiration in some areas, and many people for reviews.