9 lines
108 B
Ruby
9 lines
108 B
Ruby
class Parenthood < ActiveRecord::Base
|
|
belongs_to :person
|
|
belongs_to :child
|
|
|
|
def to_i
|
|
id
|
|
end
|
|
end
|