Skip to content

Commit

Permalink
Merge pull request #818 from mfdj/master
Browse files Browse the repository at this point in the history
Clarified tutorial context in section introducing `orm:scehma-tool:*` commands
  • Loading branch information
Ocramius committed Oct 17, 2013
2 parents 95ad926 + 2f8b080 commit 1e10fca
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions docs/en/tutorials/getting-started.rst
Expand Up @@ -196,9 +196,14 @@ Doctrine command-line tool:
$ cd project/
$ php vendor/bin/doctrine orm:schema-tool:create

During the development you probably need to re-create the database
several times when changing the Entity metadata. You can then
either re-create the database:
At this point no entitiy metadata exists in `src` so you will see a message like
"No Metadata Classes to process." Don't worry, we'll create a Product entity and
corresponding metadata in the next section.

You should be aware that during the development process you'll periodically need
to update your database schema to be in sync with your Entities metadata.

You can easily recreate the database:

::

Expand Down

0 comments on commit 1e10fca

Please sign in to comment.