Skip to content

Instantly share code, notes, and snippets.

@ihatov08
Created December 31, 2015 08:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ihatov08/4f2aca2af9c1e544b6ef to your computer and use it in GitHub Desktop.
Save ihatov08/4f2aca2af9c1e544b6ef to your computer and use it in GitHub Desktop.
seedデータの投入方法 ref: http://qiita.com/ihatov08/items/e1fdc66537120a095840
$ rake db:seed
100.times do |index|
Post.create(title: "タイトル#{index}", body: "ブログの内容#{index}", category: "カテゴリー#{index}")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment