@@ -286,12 +286,12 @@ to add the table to your database:
286286
287287 $ php app/console doctrine:migrations:migrate
288288
289- The moral of the story is this: after each change you make to your Doctrine
289+ The moral of the story is this: After each change you make to your Doctrine
290290mapping information, run the ``doctrine:migrations:diff `` command to automatically
291291generate your migration classes.
292292
293293If you do this from the very beginning of your project (i.e. so that even
294- the first tables were loaded via a migration class), you'll always be able
294+ the first tables were created via a migration class), you'll always be able
295295to create a fresh database and run your migrations in order to get your database
296296schema fully up to date. In fact, this is an easy and dependable workflow
297297for your project.
@@ -312,8 +312,8 @@ In some cases you might need access to the container to ensure the proper update
312312your data structure. This could be necessary to update relations with some specific
313313logic or to create new entities.
314314
315- Therefore you can just implement the ContainerAwareInterface with its needed methods
316- to get full access to the container or ContainerAwareTrait if you use Symfony >= 2.4 .
315+ Therefore you can just implement the `` ContainerAwareInterface `` with its needed methods
316+ to get full access to the container or `` ContainerAwareTrait `` .
317317
318318.. code-block :: php
319319
@@ -342,7 +342,7 @@ to get full access to the container or ContainerAwareTrait if you use Symfony >=
342342 }
343343 }
344344
345- With the trait
345+ Or with the trait (since Symfony 2.4):
346346
347347.. code-block :: php
348348
@@ -372,7 +372,7 @@ Manual Tables
372372
373373It is a common use case, that in addition to your generated database structure
374374based on your doctrine entities you might need custom tables. By default such
375- tables will be removed by the doctrine:migrations: diff command.
375+ tables will be removed by the `` doctrine:migrations:diff `` command.
376376
377377If you follow a specific scheme you can configure doctrine/dbal to ignore those
378378tables. Let's say all custom tables will be prefixed by ``t_ ``. In this case you
@@ -401,10 +401,10 @@ just have to add the following configuration option to your doctrine configurati
401401 // ...
402402 ));
403403
404- This ignores the tables on the DBAL level and they will be ignored by the diff command.
404+ This ignores the tables on the DBAL level and they will be ignored by the `` diff `` command.
405405
406- Note that if you have multiple connections configured then the ``schema_filter `` configuration
407- will need to be placed per- connection.
406+ Note that if you have multiple connections configured, the ``schema_filter `` configuration
407+ must be placed for each connection.
408408
409409.. _documentation : http://docs.doctrine-project.org/projects/doctrine-migrations/en/latest/index.html
410410.. _DoctrineMigrationsBundle : https://github.com/doctrine/DoctrineMigrationsBundle
0 commit comments