# File lib/big_record/dynamic_schema.rb, line 66
    def inspect_with_dynamic_schema
      attributes_as_nice_string = self.column_names.collect { |name|
        if has_attribute?(name) || new_record?
          "#{name}: #{attribute_for_inspect(name)}"
        end
      }.compact.join(", ")
      "#<#{self.class} #{attributes_as_nice_string}>"
    end