We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ゴール : rails db:seed コマンドを実行し「seeds.rb」に記載した定義からダミーデータを作成できるようにする。
rails db:seed
.backend/db
Schemafile
./backend/db
環境構築を行なった直後は、データベースに何のデータも入っていない。 開発の中で、動作確認を行う際にはデータを用意する必要がある。 seedを使用し、コマンド1つで作成できるようにすることで全体の開発効率を高めたい。
The text was updated successfully, but these errors were encountered:
Merge pull request #53 from Progaku-copy/enhance/#45-create-seed
9771f68
Enhance/#45 create seed
taku-enginner
Successfully merging a pull request may close this issue.
ドキュメント概要
ゴール :
rails db:seed
コマンドを実行し「seeds.rb」に記載した定義からダミーデータを作成できるようにする。.backend/db
のSchemafile
を参照し、各テーブルのカラム名など現在のデータベースの定義を確認する。./backend/db
/のseeds.rbに各テーブルのダミーデータを作成する処理を書く。データ数はとりあえず10件とする。rails db:seed
コマンドを実行。ダミーデータが作成できたか、各テーブルを確認する。目的
環境構築を行なった直後は、データベースに何のデータも入っていない。
開発の中で、動作確認を行う際にはデータを用意する必要がある。
seedを使用し、コマンド1つで作成できるようにすることで全体の開発効率を高めたい。
その他
The text was updated successfully, but these errors were encountered: