blob: 33cffdbaf687b859b3eec1d7ce1cc9cc53138167 (
plain)
1
2
3
4
5
6
7
|
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [("app1", "2_auto"), ("app2", "2_auto")]
operations = [migrations.RunPython(migrations.RunPython.noop)]
|