Skip to content

Commit

Permalink
Improve phrasing
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Dec 7, 2024
1 parent e000c3a commit d92de1d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/en/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1149,7 +1149,7 @@ Alert of missing migrations
---------------------------

You can use the ``Migrations.PendingMigrations`` middleware in local development
to alert developers about new migrations that are not yet being applied::
to alert developers about new migrations that have not been applied::

use Migrations\Middleware\PendingMigrationsMiddleware;

Expand All @@ -1164,10 +1164,11 @@ to alert developers about new migrations that are not yet being applied::
->add(new PendingMigrationsMiddleware($config))
... // rest

You can add `'app'` config key set to `false` if you are only interested in plugin migrations to be checked.
You can add `'app'` config key set to `false` if you are only interested in
checking plugin migrations.

In case you run into the exception and need to skip it for a moment, you can temporarily disable
it using the query string `...?skip-migration-check=1`.
You can temporarily disable the migration check by adding
``skip-migration-check=1`` to the URL query string

IDE autocomplete support
------------------------
Expand Down

0 comments on commit d92de1d

Please sign in to comment.