Last active
February 25, 2016 20:31
-
-
Save wolfsage/841b1c247cd9b74b953b to your computer and use it in GitHub Desktop.
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
Accepted design: | |
user | |
user_id | |
foo | |
bar | |
user_info | |
user_info_id | |
user_id | |
name | |
My design: | |
user | |
user_id | |
user_info_id | |
foo | |
bar | |
user_info | |
user_info_id | |
name | |
Benefits: From the user object which I'll typically have, I have the user_info_id which I need for other things but I often don't need to use user_info data. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment