Describe the bug
I am attempting to change a foreign key on my data model to explicity set on_delete behavior to SET_NULL. Since default on_delete behavior is CASCADE, after running aerich migrate I wouild expect a new migration file to have been generated. Instead, no changes are recognized.
To Reproduce
change
example_fk_field = fields.ForeignKeyField("models.OtherModel")
to
example_fk_field = fields.ForeignKeyField("models.OtherModel", on_delete=fields.SET_NULL)
Expected behavior
Database migration file should be generated upon running aerich migrate.
Additional context
None