mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-11-04 07:05:41 +00:00 
			
		
		
		
	Bug fix for custom migration
Ref: https://stackoverflow.com/questions/13410982/attributeerror-long-object-has-no-attribute-fetchall#13411358
This commit is contained in:
		@@ -95,7 +95,7 @@ def associate_manufacturers(apps, schema_editor):
 | 
			
		||||
 | 
			
		||||
        cursor = connection.cursor()
 | 
			
		||||
        response = cursor.execute(query)
 | 
			
		||||
        row = response.fetchone()
 | 
			
		||||
        row = cursor.fetchone()
 | 
			
		||||
 | 
			
		||||
        if len(row) > 0:
 | 
			
		||||
            return row[0]
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user