summaryrefslogtreecommitdiff
path: root/tests/postgres_tests/array_default_migrations
Commit message (Collapse)AuthorAgeFilesLines
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-012-2/+0
| | | | | | | | Black 23.1.0 is released which, as the first release of the year, introduces the 2023 stable style. This incorporates most of last year's preview style. https://github.com/psf/black/releases/tag/23.1.0
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-072-11/+24
|
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-182-6/+0
|
* Refs #22962 -- Made test case use non-conflicting table namesMarkus Holtermann2015-02-132-42/+2
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-062-2/+2
|
* Fixed #22962 -- Default values for ArrayField with migrations.Marc Tamlyn2014-07-293-0/+85
Fields normally try to force the default value to a string. As translatable strings are not valid default values for ArrayField, we can remove this behaviour which was causing issues with some migrations. Thanks to @schinckel for the report.