educoder/app/models/knowledge_point.rb

6 lines
165 B

5 years ago
class KnowledgePoint < ApplicationRecord
belongs_to :curriculum_direction
5 years ago
belongs_to :curriculum
has_many :knowledge_point_containers, dependent: :destroy
5 years ago
end