mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-11-04 15:15:42 +00:00 
			
		
		
		
	Fix migration order (#5027)
- Ensure stock.0094 runs before company.0059 - Ref https://github.com/inventree/InvenTree/pull/4984 - Ideally addresses historical migration issues
This commit is contained in:
		@@ -8,6 +8,7 @@ import InvenTree.fields
 | 
				
			|||||||
class Migration(migrations.Migration):
 | 
					class Migration(migrations.Migration):
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    dependencies = [
 | 
					    dependencies = [
 | 
				
			||||||
 | 
					        ('stock', '0094_auto_20230220_0025'),
 | 
				
			||||||
        ('company', '0058_auto_20230515_0004'),
 | 
					        ('company', '0058_auto_20230515_0004'),
 | 
				
			||||||
    ]
 | 
					    ]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user