OfficeMomsandDads/scheduler

View on GitHub
app/models/child.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

class Child < ApplicationRecord
  belongs_to :need
  enum sex: { male: 0, female: 1, non_binary: 2 }

  validates :age,
            :sex,
            presence: true
end