mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
c9e2fa22cb
Currently, ActiveRecord models with multiple words cannot have their inverse associations detected automatically.
5 lines
98 B
Ruby
5 lines
98 B
Ruby
class MixedCaseMonkey < ActiveRecord::Base
|
|
self.primary_key = 'monkeyID'
|
|
|
|
belongs_to :man
|
|
end
|