Fixed #24098 -- Added no-op attributes to RunPython and RunSQL

Thanks Loïc Bistuer and Tim Graham for the discussion and review.
This commit is contained in:
Markus Holtermann 2015-01-08 18:00:04 +01:00 committed by Tim Graham
parent 67d6a8c4e6
commit c8bac4b556
25 changed files with 72 additions and 26 deletions

View file

@ -9,5 +9,5 @@ class Migration(migrations.Migration):
dependencies = [("migrations", "6_auto")]
operations = [
migrations.RunPython(lambda apps, schema_editor: None)
migrations.RunPython(migrations.RunPython.noop)
]