rent
ReferenceCommand line

rent migrate history

Review applied migrations

rent migrate history
Migration history

Version           Status     Checksum      Name
20260910022456    applied    5d2a1c0f9e3b  create_users
20260910022512    applied    7bc1e8d24a60  add_posts

Each line contains the version, state, the first twelve hex digits of the file's SHA-256 checksum, and name. The durable journal retains the complete checksum used for validation. An empty database reports:

Migration history

No migrations have been applied.

Read history from automation

rent migrate history --format json
{
  "migrations": [
    {
      "checksum": "5d2a1c0f9e3b7a4d8c2e6f1b0a9d8c7e6f5a4b3c2d1e0f9a8b7c6d5e4f3a2b1c",
      "name": "create_users",
      "status": "applied",
      "version": "20260910022456"
    }
  ]
}

On this page