Genshin/GAKUEngine

View on GitHub
core/app/models/gaku/program_level.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Gaku
  class ProgramLevel < ActiveRecord::Base
    belongs_to :program
    belongs_to :level

    validates :level, presence: true
  end
end