From 4adfb011d2ddbb747ab779e4cdf1f9117c14d9b3 Mon Sep 17 00:00:00 2001 From: Yared Yemane Date: Wed, 4 Mar 2026 09:11:53 -0800 Subject: [PATCH] profile completion percentage inconsistency fix --- db/migrations/000012_profile_completion.up.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/migrations/000012_profile_completion.up.sql b/db/migrations/000012_profile_completion.up.sql index 65a0257..5074668 100644 --- a/db/migrations/000012_profile_completion.up.sql +++ b/db/migrations/000012_profile_completion.up.sql @@ -27,7 +27,7 @@ BEGIN filled_count := filled_count + 1; END IF; - -- Check country + --- Check country IF NULLIF(TRIM(NEW.country), '') IS NOT NULL THEN filled_count := filled_count + 1; END IF;