LoginSignup
0
0

More than 5 years have passed since last update.

Railsでデータベースを初期化

Posted at

DBを初期化するには、app/db/seeds.rbに以下のように書いて

app/db/seeds.rb
10.times do
  Spot.create(
    name: '増上寺',
    description: '東京タワーに近い',
    region: '関東',
    prefecture: '東京都',
    city: '港区',
    address1: '芝公園4−7−35',
    address2: ''
  )
end

以下のようにdb:seedを実行。

bundle exec rake db:seed

以上

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0