Итак, вот объект, который я извлек из ActiveRecord other = [#<Referrer id: 16, name: "Other", published: true, created_at: "2011-07-11 16:22:00", updated_at: "2011-07-11 16:22:00">]
Почему я не могу сделать other.created_at
, пока я могу сделать other.name
?
Вот модель:
class Referrer < ActiveRecord::Base
end
Ошибка, которую я получаю:
NoMethodError: undefined method `created_at' for #<ActiveRecord::Relation:0x1035763c8>
Что я пропустил?