diff --git a/deploy/tax_rate.sql b/deploy/tax_rate.sql index a9495cc..0e35919 100644 --- a/deploy/tax_rate.sql +++ b/deploy/tax_rate.sql @@ -8,7 +8,7 @@ set search_path to numerus, public; create domain tax_rate as numeric check (value > -1 and value < 1); -comment on domain country_code is -'A tax rate in the range (-1, 1)'; +comment on domain tax_rate is +'A rate for taxes in the range (-1, 1)'; commit;