3YOURMIND / django-migration-linter

:rocket: Detect backward incompatible migrations for your django project
https://pypi.python.org/pypi/django-migration-linter/
Apache License 2.0
530 stars 58 forks source link

Don't consider partial unique index creation as making a column not nullable #280

Closed devend711 closed 8 months ago

devend711 commented 9 months ago

One more fix related to #250: the current regex match only makes an exception for "CREATE INDEX" but not "CREATE UNIQUE INDEX", which is safe for the same reasons

Same idea as the fix in #258