| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-31 | Fixed #22359 -- Changing M2M field to blank=True failed on sqlite. | Loic Bistuer | |
| 2014-03-25 | Fixed #22331 -- Made MigrationAutodetector ignore unmanaged models. | Tim Graham | |
| This commit reverts 69d4b1c and tackle the issue from a different angle. Models remain present in the project state, but are now ignored by the autodetector. | |||
| 2014-03-25 | Fixed #22331 -- Fixed migrations ProjectState to ignore unmanaged models. | Loic Bistuer | |
| 2014-03-25 | Fixed #22300 -- Fixed crash in migrations when changing non-relational field ↵ | Stephen Burrows | |
| to relational. | |||
| 2014-03-19 | Fixed #22275: unique_together broken if ForeignKey split into new file. | Andrew Godwin | |
| Thanks to bak1an for the patch. | |||
| 2014-03-11 | Remove failing test while we fix the underlying bug | Andrew Godwin | |
| 2014-03-11 | Fix AlterField migrations that are related to a RenameModel migration | Chris Beaven | |
| 2014-03-11 | Fix autodetector creation of RenameModel migration to capitalize model names | Chris Beaven | |
| 2014-03-10 | Fixed #22239 -- Add auto detection of renamed models | Chris Beaven | |
| 2014-03-08 | Fixed #21843: Remove explicit ID column setting in test | Andrew Godwin | |
| 2014-03-08 | Merge pull request #2315 from bendavis78/issues/22073 | Andrew Godwin | |
| Fixed #22073 - Ensure CreateTable operation handles backwards migration correctly when M2M fields are present | |||
| 2014-03-06 | Fixed #22204: Bad circular-dep-breaking if more than one per run | Andrew Godwin | |
| 2014-03-04 | Fixed three small flake8 violations. | Alex Gaynor | |
| 2014-03-05 | Fixed #21893 -- ModelState didn't account for MTI parents inherited from ↵ | Loic Bistuer | |
| abstract models. | |||
| 2014-03-05 | Added tests for MTI in RunPython. | Loic Bistuer | |
| 2014-03-01 | Fixed #22172 -- Allowed index_together to be a single list (rather than list ↵ | Anubhav Joshi | |
| of lists).. Thanks EmilStenstrom for the suggestion. | |||
| 2014-03-01 | Fixed #22168 -- Fixed migrations failing on sqlite when column names are SQL ↵ | Baptiste Mispelon | |
| keywords Thanks to trac user fallen_flint for the report and initial patch. | |||
| 2014-02-23 | Two whitespace changes to appease flake8 | Alex Gaynor | |
| 2014-02-23 | Fixed #22095 -- Enabled backward migrations for RunPython operations | Andrew Gorcester | |
| Added reversible property to RunPython so that migrations will not refuse to reverse migrations including RunPython operations, so long as reverse_code is set in the RunPython constructor. Included tests to check the reversible property on RunPython and the similar RunSQL. | |||
| 2014-02-17 | Fixed #22073 - Ensure CreateTable operation handles backwards migration ↵ | Ben Davis | |
| correctly when M2M fields are present | |||
| 2014-02-17 | Merge pull request #2270 from bmispelon/ticket-22030 | Andrew Godwin | |
| Fixed #22030 -- Don't assume that all fields have a swappable_setting at... | |||
| 2014-02-14 | Fixed #22035 -- reordered migration operations | Anton Baklanov | |
| Now AddField actions appear in operations list before AlterUniqueTogether actions. Thanks to SmileyChris for the report. | |||
| 2014-02-13 | Fixed #22030 -- Don't assume that all fields have a swappable_setting attribute. | Baptiste Mispelon | |
| 2014-02-13 | Removed test for migration check forgotten in ↵ | Baptiste Mispelon | |
| 7e941ba67ceab8a74ba50509d13ed4298f8305cd. | |||
| 2014-02-12 | Fix my slightly hasty autodetector changes | Andrew Godwin | |
| 2014-02-09 | Fixed #21954: Raise nice error when serializing datetimes with timezones | Andrew Godwin | |
| 2014-02-09 | Removed unused imports + other flake8 fixes. | Tim Graham | |
| 2014-02-09 | Fixed #21892: RunPython no longer accepts strings | Andrew Godwin | |
| 2014-02-08 | Adding tests for check_migrations. | mlavin | |
| 2014-02-02 | Fix regress added to migrations.test_operations.test_alter_field_pk_fk | Michael Manfre | |
| 2014-02-02 | Ensure cursors are closed when no longer needed. | Michael Manfre | |
| This commit touchs various parts of the code base and test framework. Any found usage of opening a cursor for the sake of initializing a connection has been replaced with 'ensure_connection()'. | |||
| 2014-01-22 | Added some missing whitespace around arithmetic operators | Alex Gaynor | |
| 2014-01-22 | Fixed #21852 -- Make migration writer serialize iterators | Markus Holtermann | |
| 2014-01-19 | Fixed a small collection of flake8 violations that had snuck in | Alex Gaynor | |
| 2014-01-20 | Fixed #16905 -- Added extensible checks (nee validation) framework | Russell Keith-Magee | |
| This is the result of Christopher Medrela's 2013 Summer of Code project. Thanks also to Preston Holmes, Tim Graham, Anssi Kääriäinen, Florian Apolloner, and Alex Gaynor for review notes along the way. Also: Fixes #8579, fixes #3055, fixes #19844. | |||
| 2014-01-19 | Remove other unicode literal | Andrew Godwin | |
| 2014-01-19 | Remove unicode prefix that snuck in | Andrew Godwin | |
| 2014-01-19 | Fixed #21664: Multi-table inheritance was duplicating _ptr fields | Andrew Godwin | |
| 2014-01-19 | Fixed #21783: (again) Found second source of bug, also squashed it. | Andrew Godwin | |
| 2014-01-20 | Fixed #21323 -- Improved readability of serialized Operation. | Loic Bistuer | |
| 2014-01-19 | Implement swappable model support for migrations | Andrew Godwin | |
| 2014-01-08 | Make test stronger to hopefully fix odd Jenkins failure | Andrew Godwin | |
| 2014-01-08 | Fixed #21142: Dependency failures on unmigrated apps. | Andrew Godwin | |
| 2013-12-30 | Populated Apps instances immediately by default. | Aymeric Augustin | |
| 2013-12-29 | Used Apps.clear_cache() in tests that alter the app registry. | Aymeric Augustin | |
| 2013-12-24 | Renamed AppCache to Apps. | Aymeric Augustin | |
| Also renamed app_cache to apps and "app cache" to "app registry". Deprecated AppCache.app_cache_ready() in favor of Apps.ready(). | |||
| 2013-12-24 | Replaced ad-hoc caching of get_models with lru_cache. | Aymeric Augustin | |
| Invalidate properly the cache whenever all_models or app_configs change. This fixes some isolation issues in the test suite. | |||
| 2013-12-23 | Imported override_settings from its new location. | Aymeric Augustin | |
| 2013-12-23 | Dropped AppCache._empty, _with_app and _without_app. | Aymeric Augustin | |
| It's now easier to achieve the same effect with modify_settings or override_settings. | |||
| 2013-12-22 | Moved apps back in the toplevel django namespace. | Aymeric Augustin | |
| Reverted 4a56a93cc458e9ab4dcab95d9f5067d4975dd1a2. | |||
