Skip to content

Instantly share code, notes, and snippets.

@manleyhimself
Created December 15, 2013 06:13
Show Gist options
  • Save manleyhimself/7969568 to your computer and use it in GitHub Desktop.
Save manleyhimself/7969568 to your computer and use it in GitHub Desktop.
Student.where(name: "Little Johnny DropTable").first_or_create
# => <Student id: 1, first_name: 'Little Johnny DropTable', grade: 2>
Student.where(name: "Sally Sue", grade: 5).first_or_create
# => <Student id: 2, first_name: 'Sally Sue', grade: 5>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment