У меня есть пара объектов в приложении Rails («Билет» и «Комментарий»)
class Ticket < ActiveRecord::Base
has_many :attributes
has_many :comments
end
class Comment < ActiveRecord::Base
belongs_to :ticket
belongs_to :user
end
со следующей схемой:
create_table "comments", :force => true do |t|
t.integer "ticket_id"
t.integer "user_id"
t.text "content"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "tickets", :force => true do |t|
t.integer "site_id"
t.integer "status"
t.integer "user_id"
t.datetime "created_at"
t.datetime "updated_at"
end
Однако по какой-то причине - всякий раз, когда я делаю @ lead.comments, я получаю сбой:
can't convert String into Integer
Есть идеи? Это сводит меня с ума!