Not remove category taxes table in migration account category

This commit is contained in:
Raimon Esteve 2018-10-27 01:37:09 +02:00
parent c4d21eca03
commit df92f0b7d8

View file

@ -115,10 +115,10 @@ with Transaction().start(dbname, 1, context=context):
cursor.execute(query)
query = "DROP TABLE if exists product_supplier_taxes_rel;"
cursor.execute(query)
query = "DROP TABLE if exists product_category_customer_taxes_rel;"
cursor.execute(query)
query = "DROP TABLE if exists product_category_supplier_taxes_rel;"
cursor.execute(query)
# query = "DROP TABLE if exists product_category_customer_taxes_rel;"
# cursor.execute(query)
# query = "DROP TABLE if exists product_category_supplier_taxes_rel;"
# cursor.execute(query)
Transaction().cursor.commit()