Fixed #21280 -- Don't generate empty migration files
This commit is contained in:
parent
7f508a3673
commit
a921f06345
|
@ -82,5 +82,6 @@ class Command(BaseCommand):
|
||||||
open(init_path, "w").close()
|
open(init_path, "w").close()
|
||||||
# We just do this once per app
|
# We just do this once per app
|
||||||
directory_created[app_label] = True
|
directory_created[app_label] = True
|
||||||
|
migration_string = writer.as_string()
|
||||||
with open(writer.path, "wb") as fh:
|
with open(writer.path, "wb") as fh:
|
||||||
fh.write(writer.as_string())
|
fh.write(migration_string)
|
||||||
|
|
Loading…
Reference in New Issue