> For the complete documentation index, see [llms.txt](https://ploegert.gitbook.io/til/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ploegert.gitbook.io/til/programmy/rails/show-pending-migrations.md).

# Show Pending Migrations

Rails comes with a built-in rake task that allows you to check the status of migrations in the project.

```bash
$ rake db:migrate:status

database: pokemon_development

 Status   Migration ID    Migration Name
--------------------------------------------------
   up     20150219143706  Create pokemon table
  down    20150228003340  Create stats table
```

For large projects with lots of migrations, this is going to be a lot of output, so you can trim it down with a simple `grep`:

```bash
$ rake db:migrate:status | grep '^  down'
  down    20150228003340  Create stats table
```

[source](https://github.com/rails/rails/blob/master/activerecord/lib/active_record/railties/databases.rake#L91)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://ploegert.gitbook.io/til/programmy/rails/show-pending-migrations.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
