module Traits class Attribute module Querying def arel table = if features.translates_with_globalize? model_class.features.globalize.translation_model_class.arel_table else model.arel end table[name] end end end end