-- Normalize service order delivery options to only "pickup" (mostrador) and "delivery" (a domicilio). -- Convert legacy "courier" records to pickup and clear courier_id when delivery is not "delivery". UPDATE service_orders SET delivery_method = 'pickup' WHERE delivery_method = 'courier'; UPDATE service_orders SET courier_id = NULL WHERE delivery_method IS NULL OR delivery_method != 'delivery';