3 lines
104 B
SQL
3 lines
104 B
SQL
-- Change Finland VAT from 24% to 25.5% on 2024-09-01
|
|
UPDATE markets SET vat = 1.255 WHERE name = 'FI';
|