Class Liftoff::OneToMany
In: vendor/plugins/liftoff/lib/associations.rb
Parent: Association

Methods

new  

Public Class methods

[Source]

    # File vendor/plugins/liftoff/lib/associations.rb, line 20
20:   def initialize(from, to)
21:     super(from, to)
22:     @from_mapping = "has_many :" + to.pluralize
23:     @to_mapping = "belongs_to :" + from
24:   end

[Validate]