You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/app/models/syllabus.rb

8 lines
237 B

class Syllabus < ActiveRecord::Base
acts_as_taggable
belongs_to :user
has_many :courses
attr_accessible :description, :title, :eng_name, :type, :credit, :hours, :theory_hours, :practice_hours, :applicable_major, :pre_course
end