mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
PSQL: Upper-case column names *must* be qualified with double-quotes
Ref: https://www.xspdf.com/resolution/53039249.html
This commit is contained in:
parent
0e246a7fdf
commit
5e9097b5e0
@ -22,7 +22,7 @@ def reverse_association(apps, schema_editor):
|
|||||||
|
|
||||||
cursor = connection.cursor()
|
cursor = connection.cursor()
|
||||||
|
|
||||||
response = cursor.execute("select id, MPN from part_supplierpart;")
|
response = cursor.execute('select id, "MPN" from part_supplierpart;')
|
||||||
supplier_parts = cursor.fetchall()
|
supplier_parts = cursor.fetchall()
|
||||||
|
|
||||||
# Exit if there are no SupplierPart objects
|
# Exit if there are no SupplierPart objects
|
||||||
@ -105,7 +105,7 @@ def associate_manufacturers(apps, schema_editor):
|
|||||||
|
|
||||||
cursor = connection.cursor()
|
cursor = connection.cursor()
|
||||||
|
|
||||||
response = cursor.execute("select id, MPN from part_supplierpart;")
|
response = cursor.execute(f'select id, "MPN" from part_supplierpart;')
|
||||||
supplier_parts = cursor.fetchall()
|
supplier_parts = cursor.fetchall()
|
||||||
|
|
||||||
# Exit if there are no SupplierPart objects
|
# Exit if there are no SupplierPart objects
|
||||||
@ -317,7 +317,7 @@ def associate_manufacturers(apps, schema_editor):
|
|||||||
|
|
||||||
# Extract all SupplierPart objects from the database
|
# Extract all SupplierPart objects from the database
|
||||||
cursor = connection.cursor()
|
cursor = connection.cursor()
|
||||||
response = cursor.execute("select id, MPN, SKU, manufacturer_id, manufacturer_name from part_supplierpart;")
|
response = cursor.execute('select id, "MPN", "SKU", manufacturer_id, manufacturer_name from part_supplierpart;')
|
||||||
results = cursor.fetchall()
|
results = cursor.fetchall()
|
||||||
|
|
||||||
part_count = len(results)
|
part_count = len(results)
|
||||||
|
Loading…
Reference in New Issue
Block a user