# File lib/big_record/dynamic_schema.rb, line 78
    def define_read_methods_with_dynamic_schema
      columns_hash.each do |name, column|
        unless respond_to_without_attributes?(name)
          define_read_method(name.to_sym, name, column)
        end

        unless respond_to_without_attributes?("#{name}?")
          define_question_method(name)
        end
      end
    end