Last active
February 23, 2019 11:06
-
-
Save thoth-ky/94dbd85ba0544be03bfb1c81efddb624 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
# db/seeds.rb | |
Book.create( | |
title: "A brief History of Time", | |
author: "Stephen Hawking", | |
review: "A very informative book from an insiders perspective in the language of an outsider", | |
reviewer: "John Doe" | |
) | |
Book.create( | |
title: "Unbowed", | |
author: "Wangari Maathai", | |
review: "An inspiring tale", | |
reviewer: "Jane Doe" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment