LiteracyVolunteersOfMA/lvm-rails

View on GitHub
app/models/volunteer_job.rb

Summary

Maintainability
A
0 mins
Test Coverage
class VolunteerJob < ApplicationRecord
  belongs_to :affiliate
  belongs_to :tutor

  validates :affiliate, presence: true
  validates :tutor, presence: true
end