Created
March 17, 2019 00:44
-
-
Save adammiribyan/5057ee5db2078554233272ebd48a28d5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Person < ApplicationRecord | |
belongs_to :personable, polymorphic: true | |
end | |
class User < ApplicationRecord | |
has_one :person, as: :personable | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
/people/users/
?