From 22fc1134610093b7e43a7ad7dcd5063624544de3 Mon Sep 17 00:00:00 2001 From: John Mizerek Date: Thu, 12 Feb 2026 21:24:28 -0800 Subject: [PATCH] Add NOW() for AddedOn in business INSERT 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 5954b18..74437fd 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) - VALUES (:name, :phone, :userId, :addressId, :deliveryZips, :communityMealType, :taxRate, :brandColor) + INSERT INTO Businesses (Name, Phone, UserID, AddressID, DeliveryZIPCodes, CommunityMealType, TaxRate, BrandColor, AddedOn) + VALUES (:name, :phone, :userId, :addressId, :deliveryZips, :communityMealType, :taxRate, :brandColor, NOW()) ", { name: bizName, phone: bizPhone,