search for: plan_id

Displaying 3 results from an estimated 3 matches for "plan_id".

Did you mean: vlan_id
2007 May 17
1
has_one_or_many
...Membership < ActiveRecord::Base end class Plan < ActiveRecord::Base end class MultiUser < Plan has_many :users end class SingleUser < Plan has_one :user end class User < ActiveRecord::Base end and then in my user table I would have a membership_id but no plan_id... I dont know quite much how to explain this better than by what I have written above, ask questions if unclear. Thank you --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. T...
2007 Oct 12
2
missing attribute: reorder
...a page called reorder that is a column in my PlanProcedures table. I''m getting an error that says The Header is NoMethodError in Manage_plan_procedures#list missing attribute: reorder Here is what my model looks like: >> PlanProcedure.column_names => ["id", "plan_id", "procedure_id", "platform_id", "plugin_id", "user_id", "release_id", "iteration_id", "minimum_priority", "procedure_iteration", "position", "created_on", "updated_on", "updated_...
2006 Nov 23
2
Some tips for testing respond_to block and making controller tests work with simply_helpful
Hi, Here''s two blog posts for those that need to test respond_to blocks and/or are currently using simply_helpful extensively. http://blog.methodmissing.com/2006/11/22/testing-different-content- types-with-rspec http://blog.methodmissing.com/2006/11/23/using-simply_helpful-with- rspec-controller-tests - Lourens