sms-pager/app/models/parenthood.rb

9 lines
108 B
Ruby
Raw Normal View History

2015-09-18 15:50:52 -05:00
class Parenthood < ActiveRecord::Base
belongs_to :person
belongs_to :child
2015-10-03 15:15:19 -05:00
def to_i
id
end
2015-09-18 15:50:52 -05:00
end