Created
May 13, 2013 08:36
-
-
Save azraai/5566952 to your computer and use it in GitHub Desktop.
Is this association possbile?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Item < ActiveRecord::Base | |
belongs_to :user | |
belongs_to :messenger, :class_name => 'User' | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class User < ActiveRecord::Base | |
has_many :items, :foreign_key => [:user_id, :messenger_id] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment