P5-3678 delete state from non-US orders

This commit is contained in:
Martin
2019-03-08 11:43:39 +01:00
parent 3e8cb025ad
commit 79f7ada4ea
+7
View File
@@ -0,0 +1,7 @@
-- P5-3678 delete state from non-US orders
DELETE FROM "order-orders_fields"
WHERE fieldid = 235 AND orderid IN (
SELECT orders.orderid FROM "order-orders" orders
JOIN "order-orders_fields" countryCode ON countryCode.fieldid = 151 AND countryCode.orderid = orders.orderid
WHERE countryCode.value != 'US'
);