LiteracyVolunteersOfMA/lvm-rails

View on GitHub
app/models/enrollment.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Enrollment < ApplicationRecord
  belongs_to :affiliate
  belongs_to :student

  validates :affiliate, presence: true
  validates :student, presence: true
end