summaryrefslogtreecommitdiff
path: root/docs/ref/contrib/postgres/fields.txt
Commit message (Collapse)AuthorAgeFilesLines
...
* Refs #26610 -- Added CIText mixin and CIChar/Email/TextField.Mads Jensen2017-02-111-11/+21
|
* Refs #23919 -- Removed Python 2 notes in docs.Tim Graham2017-01-181-4/+4
|
* Removed obsolete versionadded/changed annotations.Tim Graham2017-01-021-8/+5
|
* Fixed #27582 -- Allowed HStoreField to store null values.David Hoffman2016-12-151-2/+7
|
* Fixed #27355 -- Added “Creating extension using migrations” docs.ntuckovic2016-12-081-21/+2
|
* Fixed #26610 -- Added CITextField to contrib.postgres.Mads Jensen2016-09-211-0/+20
|
* Fixed #25995 -- Added an encoder option to JSONFieldClaude Paroz2016-08-251-6/+21
| | | | Thanks Berker Peksag and Tim Graham for the reviews.
* Removed versionadded/changed annotations for 1.9.Tim Graham2016-05-201-4/+0
|
* Fixed #26101 -- Allowed introspection of base_field.model in RangeFieldanna2016-04-031-1/+1
| | | | | | Used the same test and fix as in #25867. This required initializing base_field in RangeField.__init__, not when setting the attribute.
* Fixed #26345 -- Clarified which RangesFields always return a canonical form.Tim Graham2016-03-121-1/+13
|
* Fixed #26124 -- Added missing code formatting to docs headers.rowanv2016-02-011-68/+68
|
* Fixed #26020 -- Normalized header stylings in docs.Elif T. Kus2016-01-221-25/+26
|
* Refs #25995 -- Documented that JSONField doesn't handle sophisticated ↵Tim Graham2016-01-081-0/+6
| | | | serialization.
* Fixed #25949 -- Documented Psycopg2 version requirement for JSONField.Tim Graham2015-12-191-2/+1
|
* Fixed incorrect examples in ArrayField docs.Dotan Agmon2015-12-101-2/+2
|
* Fixed #25508 -- Modified QuerySet.__repr__() to disambiguate it from a list.Tim Graham2015-10-061-39/+39
|
* Fixed #24690 -- Added a warning about mutable defaults for ArrayField/JSONField.Tim Graham2015-08-011-0/+12
|
* Fixed #24837 -- field__contained_by=RangeMarc Tamlyn2015-06-041-2/+22
| | | | | | | | Provide `contained_by` lookups for the equivalent single valued fields related to the range field types. This acts as the opposite direction to rangefield__contains. With thanks to schinckel for the idea and initial tests.
* Refs #24811 -- Fixed syntax error in CREATE EXTENSION example query.Tim Graham2015-05-311-1/+1
|
* Fixed #24604 -- Added JSONField to contrib.postgres.Marc Tamlyn2015-05-301-0/+105
|
* Add HasAnyKeys lookup for HStoreField.Marc Tamlyn2015-05-301-0/+17
|
* Fixed #24811 -- Added details on installing PostgreSQL extensions.Tim Graham2015-05-231-0/+18
|
* Documented INSTALLED_APPS requirement for HStoreField.Tim Graham2015-04-241-5/+9
|
* Fixed #24645 -- Documented use of HStoreExtension.Tim Graham2015-04-161-0/+6
|
* Improved nested ArrayField exampleTom Christie2015-02-051-3/+5
|
* Fixed spelling errors in docs.Tim Graham2015-01-111-1/+1
|
* Fixed #24001 -- Added range fields for PostgreSQL.Marc Tamlyn2015-01-101-0/+263
| | | | | | | | | Added support for PostgreSQL range types to contrib.postgres. - 5 new model fields - 4 new form fields - New validators - Uses psycopg2's range type implementation in python
* Fix minor typo in documentation.Marc Tamlyn2014-11-041-1/+1
|
* Added HStoreField.Marc Tamlyn2014-11-041-2/+164
| | | | | Thanks to `django-hstore` for inspiration in some areas, and many people for reviews.
* Fixed spelling in docs.Tim Graham2014-05-271-2/+2
|
* Fix an error in a documented lookup example.Marc Tamlyn2014-05-261-1/+1
|
* Added omitted documentation for ArrayField__len.Marc Tamlyn2014-05-221-0/+14
|
* Added array field support for PostgreSQL.Marc Tamlyn2014-05-221-0/+228
The first part of django.contrib.postgres, including model and two form fields for arrays of other data types. This commit is formed of the following work: Add shell of postgres app and test handling. First draft of array fields. Use recursive deconstruction. Stop creating classes at lookup time. Add validation and size parameter. Add contained_by lookup. Add SimpleArrayField for forms. Add SplitArrayField (mainly for admin). Fix prepare_value for SimpleArrayField. Stop using MultiValueField and MultiWidget. They don't play nice with flexible sizes. Add basics of admin integration. Missing: - Tests - Fully working js Add reference document for django.contrib.postgres.fields.ArrayField. Various performance and style tweaks. Fix internal docs link, formalise code snippets. Remove the admin code for now. It needs a better way of handing JS widgets in the admin as a whole before it is easy to write. In particular there are serious issues involving DateTimePicker when used in an array. Add a test for nested array fields with different delimiters. This will be a documented pattern so having a test for it is useful. Add docs for SimpleArrayField. Add docs for SplitArrayField. Remove admin related code for now. definition -> description Fix typo. Py3 errors. Avoid using regexes where they're not needed. Allow passing tuples by the programmer. Add some more tests for multidimensional arrays. Also fix slicing as much as it can be fixed. Simplify SplitArrayWidget's data loading. If we aren't including the variable size one, we don't need to search like this.