docbrown/docs/getting-started/db.md
Andrew Brown 30dcb23169 #2507 - refactor GitDocs documentation (#2595)
* #2507 - refactor GitDocs documentation

* #2507 - fix grammar and spelling errors
2019-04-29 10:08:22 -04:00

384 B

title
Preparing the Database

Preparing the Database

We need to create our database, load the database schema, and load seed data. This can be accomplished with:

rake db:setup

db:setup actually runs the following rake commands in order so you could alternatively run each of these to produce the same result.

rake db:create
rake db:schema:load
rake db:seed