Displaying 1 result from an estimated 1 matches for "system_version_certifi".
Did you mean:
system_version_certified
2010 Dec 23
0
has_many :through full stack help
...cations
has_many :implementations
has_many :systems, :through => :implementations
validates_presence_of :name, :tax_id
end
-----SYSTEM MODEL-------
class System < ActiveRecord::Base
attr_accessible :system_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...