graphql-engine/docs/graphql/manual/migrations/advanced/rolling-back-migrations.rst

43 lines
1.0 KiB
ReStructuredText
Raw Normal View History

.. meta::
:description: Roll back Hasura migrations
:keywords: hasura, docs, migration, roll back
Rolling back applied migrations
===============================
.. contents:: Table of contents
:backlinks: none
:depth: 1
:local:
2019-09-11 10:17:14 +03:00
If there are any issues with the migrations that are applied, you can
roll back the database and Hasura metadata to a desired version using the
``down`` migrations.
.. note::
2019-09-11 10:17:14 +03:00
Rollbacks will only work if there are ``down`` migrations defined. The console
will not generate ``down`` migrations for SQL statements executed from the
``SQL`` tab, even though you can add them as an ``up`` migration.
Rollback also means applying down migrations. Here are some example scenarios:
2019-09-11 10:17:14 +03:00
To roll back all the applied migrations, execute:
.. code-block:: bash
hasura migrate apply --down all
2019-09-11 10:17:14 +03:00
To roll back the last 2 migration versions:
.. code-block:: bash
hasura migrate apply --down 2
2019-09-11 10:17:14 +03:00
To roll back a particular migration version:
.. code-block:: bash
hasura migrate apply --version 1550925483858 --type down