# File lib/big_record/base.rb, line 162
    def destroy
      unless new_record?
        connection.delete(self.class.table_name, self.id)
      end

      # FIXME: this currently doesn't work because we write the attributes everytime we read them
      # which means that we cannot read the attributes of a deleted record... it's bad
#      freeze
    end