fix(migrations): Fix generate migration step to work in new Django apps. (#77220)
This fixes the generate sql command to work correctly in new Django
apps. It works by performing a diff of any new files in the migration
folders compared to master. In a new app, this ends up including
`__init__.py`, which causes the command to fail. Just excluding that
file.
<!-- Describe your PR here. -->