From c0f44842f7c563b6fb03c159b0769e1c49404cb2 Mon Sep 17 00:00:00 2001 From: Harkamal Randhawa Date: Wed, 1 Apr 2026 20:08:39 -0600 Subject: [PATCH] Remove duplicate migration --- .../V14__normalize_phone_numbers.sql | 34 ------------------- 1 file changed, 34 deletions(-) delete mode 100644 backend/src/main/resources/db/migration/V14__normalize_phone_numbers.sql diff --git a/backend/src/main/resources/db/migration/V14__normalize_phone_numbers.sql b/backend/src/main/resources/db/migration/V14__normalize_phone_numbers.sql deleted file mode 100644 index 80da343c..00000000 --- a/backend/src/main/resources/db/migration/V14__normalize_phone_numbers.sql +++ /dev/null @@ -1,34 +0,0 @@ --- Normalize existing phone numbers to (XXX) XXX-XXXX format - --- Update users table -UPDATE users -SET phone = '(' || SUBSTRING(clean_digits, 1, 3) || ') ' || SUBSTRING(clean_digits, 4, 3) || '-' || SUBSTRING(clean_digits, 7, 4) -FROM ( - SELECT id, - RIGHT(regexp_replace(phone, '\D', '', 'g'), 10) as clean_digits - FROM users - WHERE regexp_replace(phone, '\D', '', 'g') ~ '\d{10,}$' -) AS sub -WHERE users.id = sub.id; - --- Update supplier table -UPDATE supplier -SET supPhone = '(' || SUBSTRING(clean_digits, 1, 3) || ') ' || SUBSTRING(clean_digits, 4, 3) || '-' || SUBSTRING(clean_digits, 7, 4) -FROM ( - SELECT supId, - RIGHT(regexp_replace(supPhone, '\D', '', 'g'), 10) as clean_digits - FROM supplier - WHERE regexp_replace(supPhone, '\D', '', 'g') ~ '\d{10,}$' -) AS sub -WHERE supplier.supId = sub.supId; - --- Update storeLocation table -UPDATE storeLocation -SET phone = '(' || SUBSTRING(clean_digits, 1, 3) || ') ' || SUBSTRING(clean_digits, 4, 3) || '-' || SUBSTRING(clean_digits, 7, 4) -FROM ( - SELECT storeId, - RIGHT(regexp_replace(phone, '\D', '', 'g'), 10) as clean_digits - FROM storeLocation - WHERE regexp_replace(phone, '\D', '', 'g') ~ '\d{10,}$' -) AS sub -WHERE storeLocation.storeId = sub.storeId;