1. from django.db import migrations
    
  2. 
    
  3. 
    
  4. class Migration(migrations.Migration):
    
  5.     replaces = [
    
  6.         ("app2", "1_auto"),
    
  7.         ("app2", "2_auto"),
    
  8.     ]
    
  9. 
    
  10.     dependencies = [("app1", "1_auto")]