Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed #33605 -- Fixed migration crash when altering RegexValidator to ↵ | Brian Helba | 2022-04-04 | 1 | -0/+2 |
| | | | | pre-compiled regular expression. | ||||
* | Refs #33476 -- Reformatted code with Black. | django-bot | 2022-02-07 | 1 | -15/+25 |
| | |||||
* | Refs #33476 -- Refactored problematic code before reformatting by Black. | Mariusz Felisiak | 2022-02-03 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | In these cases Black produces unexpected results, e.g. def make_random_password( self, length=10, allowed_chars='abcdefghjkmnpqrstuvwxyz' 'ABCDEFGHJKLMNPQRSTUVWXYZ' '23456789', ): or cursor.execute(""" SELECT ... """, [table name], ) | ||||
* | Refs #29898 -- Moved django.db.migrations.operations.utils to ↵ | manav014 | 2021-06-22 | 1 | -0/+72 |
| | | | | django.db.migrations.utils. | ||||
* | Refs #29899 -- Moved resolve_relation() to django.db.migrations.utils. | David Wobrock | 2021-04-16 | 1 | -0/+29 |
| | |||||
* | Refs #23919 -- Stopped inheriting from object to define new style classes. | Simon Charette | 2017-01-19 | 1 | -1/+1 |
| | |||||
* | Fixed #26429 -- Added a timestamp to merge migration names. | Raphael Gaschignard | 2016-05-11 | 1 | -0/+5 |
| | | | | This reduces the possibility of a naming conflict, especially after squashing migrations. | ||||
* | Fixed #25280 -- Properly checked regex objects for equality to prevent ↵ | Markus Holtermann | 2015-08-27 | 1 | -0/+12 |
infinite migrations Thanks Sayid Munawar and Tim Graham for the report, investigation and review. |