summaryrefslogtreecommitdiff
path: root/tests/postgres_tests/array_default_migrations
AgeCommit message (Collapse)Author
2015-02-13[1.8.x] Refs #22962 -- Made test case use non-conflicting table namesMarkus Holtermann
Backport of b06935a486e633e9732bce2bc5f796eb437b2531 from master
2015-02-09[1.8.x] Sorted imports with isort; refs #23860.Tim Graham
Backport of 0ed7d155635da9f79d4dd67e4889087d3673c6da from master
2014-07-29Fixed #22962 -- Default values for ArrayField with migrations.Marc Tamlyn
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.