Created
March 11, 2014 22:14
-
-
Save jnwheeler44/9496253 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
user = User.find_or_create_by_username(:username => "wheeler", :email => "[email protected]") | |
user.username | |
# => {:username => "wheeler, :email => "[email protected]") | |
user= User.find_or_create_by_company_id(:company_id => 23, :username => "wheeler") | |
user.company_id | |
# => 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment