From a62bf3055e5fcb26ce89d9d9b048856d6faedb64 Mon Sep 17 00:00:00 2001
From: "Karl O. Pinc" <kop@karlpinc.com>
Date: Sun, 1 Oct 2023 14:57:19 -0500
Subject: [PATCH] Column names should not contain underscores

---
 db/schemas/lookup/tables/create/comm_ids.m4 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/db/schemas/lookup/tables/create/comm_ids.m4 b/db/schemas/lookup/tables/create/comm_ids.m4
index 6a40569..c392dfe 100644
--- a/db/schemas/lookup/tables/create/comm_ids.m4
+++ b/db/schemas/lookup/tables/create/comm_ids.m4
@@ -31,8 +31,8 @@ CREATE TABLE comm_ids (
         nospaces_check(`Name')
   ,notes TEXT NOT NULL
          notonlyspaces_check(`Notes')
-  , memb_criteria TEXT NOT NULL
-         notonlyspaces_check(`Memb_Criteria')
+  ,membcriteria TEXT NOT NULL
+         notonlyspaces_check(`MembCriteria')
 );
 
 grant_priv(`COMM_IDS')
-- 
2.34.1