From d5fb5a4326d894618b44c2100cca23f48cf70f31 Mon Sep 17 00:00:00 2001 From: jordi fita mas Date: Fri, 10 Feb 2023 19:00:08 +0100 Subject: [PATCH] Fix comment on domain tax_rate --- deploy/tax_rate.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;