Displaying 1 result from an estimated 1 matches for "ject_id".
Did you mean:
sect_id
2012 Jun 30
5
Problems with associations
Hello guys, I have two tables, tasks and projects, and each model I put:
Task.rb
class Task < ActiveRecord::Base
attr_accessible :user_id, :project_id, :name
belongs_to :project
end
Project.rb
class Project < ActiveRecord::Base
attr_accessible :name, :description
has_many :tasks
end
But when I go to my prompt and I make a SELECT with task, none project
is returned.
irb(main):001:0> Task.all
←[1m←[36mTask Load (0.0ms)←[0m ←[1mSE...