# File lib/big_record/model.rb, line 190
    def id
      attr_name = self.class.primary_key
      c = column_for_attribute(attr_name)
      define_read_method(:id, attr_name, c) if self.class.generate_read_methods
      read_attribute(attr_name)
    end