Files
consume-rs/backend/migrations/0005_currency_override.sql
2026-06-17 16:39:43 +02:00

7 lines
374 B
SQL

-- Manual currency override for items whose auto-detected currency is wrong.
-- Some Shopify shops price an item identically in base and presentment currency
-- (e.g. $49.90 == €49.90), which makes the conversion heuristic mislabel it.
-- When set, this wins over the fetched currency on every refetch and display.
ALTER TABLE items
ADD COLUMN currency_override TEXT;