From a32614be179cc9ae0eb3753966c2080f11a7964f Mon Sep 17 00:00:00 2001 From: John Mizerek Date: Thu, 12 Feb 2026 21:06:28 -0800 Subject: [PATCH] Restore CommunityMealType column in business INSERT (added column to dev DB) Co-Authored-By: Claude Opus 4.5 --- api/setup/saveWizard.cfm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/setup/saveWizard.cfm b/api/setup/saveWizard.cfm index 74437fd..5954b18 100644 --- a/api/setup/saveWizard.cfm +++ b/api/setup/saveWizard.cfm @@ -223,8 +223,8 @@ try { // Create new business with address link and phone queryTimed(" - INSERT INTO Businesses (Name, Phone, UserID, AddressID, DeliveryZIPCodes, CommunityMealType, TaxRate, BrandColor, AddedOn) - VALUES (:name, :phone, :userId, :addressId, :deliveryZips, :communityMealType, :taxRate, :brandColor, NOW()) + INSERT INTO Businesses (Name, Phone, UserID, AddressID, DeliveryZIPCodes, CommunityMealType, TaxRate, BrandColor) + VALUES (:name, :phone, :userId, :addressId, :deliveryZips, :communityMealType, :taxRate, :brandColor) ", { name: bizName, phone: bizPhone,