administration.rb 161 B

123456
  1. class Administration < ApplicationRecord
  2. belongs_to :user
  3. belongs_to :school
  4. validates :user_id, presence: true
  5. validates :school_id, presence: true
  6. end