diff --git a/source/development/migrations.rst b/source/development/migrations.rst index 5a3252160..db4745bd3 100644 --- a/source/development/migrations.rst +++ b/source/development/migrations.rst @@ -87,7 +87,7 @@ You can generate migration file from the command line, using those commands: * `php app/console doctrine:migrations:diff` to generate a migration file by comparing your current database to your mapping information * `php app/console doctrine:migrations:generate` to generate a blank migration file. -Those files will be located into `app/DoctrineMigrations` directory. You will have to copy those file to your the directory `Resource/migrations` into your bundle directory. +Those files will be located into `app/DoctrineMigrations` directory. You will have to copy those file to your the directory `Resources/migrations` into your bundle directory. Comments and documentation -------------------------- @@ -97,4 +97,5 @@ As files are copied from your bundle to the `app/DoctrineMigrations` directory, Inside the script ----------------- -The script which move the migrations files to app directory `might be found here `_. +The script which move the migrations files to app directory `might be found here +