Displaying 1 result from an estimated 1 matches for "system_start_d".
2010 Dec 23
0
has_many :through full stack help
...m_publisher, :system_name, :system_type, :system_version,
:system_version_certified, :practice_ids
has_many :implementations
has_many :practices, :through => :implementations
end
-----IMPLEMENTATION MODEL-----
class Implementation < ActiveRecord::Base
attr_accessible :system_start_date, :system_stop_date, :system_implemented_by, :system_ids, :practice_ids
belongs_to :system
belongs_to :practice
end
----PRACTICE CONTROLLER----
class PracticesController < ApplicationController
#added for auto complete text (HABTM)
#auto_complete_for :location, :name
#auto_complet...