Guest User

Untitled

a guest
Feb 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. def data
  2. i = 1000
  3. while i > 0
  4. @book = Book.new
  5. @book.title = "Book #{i}"
  6. @book.author = "Author #{i}"
  7. @book.description = "The description for book #{i}"
  8. @book.save
  9. i = i - 1
  10. end
  11. render :text => "Created data!"
  12. end
Add Comment
Please, Sign In to add comment