graphql-engine/docs/graphql/core/migrations/index.rst

90 lines
2.4 KiB
ReStructuredText
Raw Normal View History

.. meta::
:description: Manage Hasura migrations and metadata
:keywords: hasura, docs, migration, metadata
.. _migrations:
Migrations & Metadata
=====================
.. contents:: Table of contents
:backlinks: none
2020-04-29 11:00:26 +03:00
:depth: 2
:local:
Introduction
------------
2020-04-29 11:00:26 +03:00
It is a typical requirement to export an existing Hasura "setup" so that you can
apply it on another instance to reproduce the same setup. For example, to achieve
a dev -> staging -> production environment promotion scenario.
.. note::
This documentation is for Hasura migrations ``config v2``, supported from
``v1.2.0``. (See :ref:`upgrade guide <migrations_upgrade_v2>`).
For ``config v1``, see :ref:`migrations_v1`.
How is Hasura state managed?
----------------------------
Hasura needs 2 pieces of information to recreate your GraphQL API, the underlying
PG database schema and the Hasura metadata which is used to describe the exposed
GraphQL API.
The :ref:`Hasura CLI <hasuracli_manual>` lets you manage these pieces of
2020-04-29 11:00:26 +03:00
information as you build your project via:
Database migration files
^^^^^^^^^^^^^^^^^^^^^^^^
The state of your PG database is managed via incremental SQL migration files.
These migration files can be applied one after the other to achieve the final
DB schema.
DB migration files can be generated incrementally and can by applied in parts to
reach particular checkpoints. They can be used to roll-back the DB schema as well.
Hasura metadata files
^^^^^^^^^^^^^^^^^^^^^
The state of Hasura metadata is managed via snapshots of the metadata. These
snapshots can be applied as a whole to configure Hasura to a state represented
in the snapshot.
Hasura metadata can be exported and imported as a whole.
Setting up migrations
---------------------
See :ref:`migrations_basics`.
Advanced use cases
------------------
- :ref:`auto_apply_migrations`
- :ref:`manual_migrations`
- :ref:`roll_back_migrations`
2020-04-29 11:00:26 +03:00
- :ref:`seed_data_migration`
Reference documentation
-----------------------
- :ref:`migrations_how_it_works`
2020-04-29 11:00:26 +03:00
- :ref:`Migration file format <migration_file_format_v2>`
- :ref:`Metadata format <metadata_format_v2>`
.. toctree::
:maxdepth: 1
:hidden:
2020-04-29 11:00:26 +03:00
Basics <basics>
Setting up migrations <migrations-setup>
Managing metadata <manage-metadata>
Advanced use cases <advanced/index>
Reference documentation <reference/index>
2020-04-29 11:00:26 +03:00
Upgrading to config v2 <upgrade-v2>
Config v1 <config-v1/index>