Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix table again... #5219

Merged
merged 1 commit into from
Aug 21, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions doc/integrator/database.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,17 @@ and ``production_static`` for production environment.
For the data of the ``main`` schema, we recommend to have one schema for each version of the application.
The following example shows how an update can be performed from a version ``2019`` to a version ``2020``:

======================== ========================= ========================
Integration schema name Production schema name
======================== ========================= ========================
Initial state main_2019 main_2019
Start a new version main_2020 main_2019
Do the changes main_2020 main_2019
Publish the new version main_2020 main_2020
======================== ========================= ========================
+-------------------------+-------------------------------+------------------------------+
| | Integration schema name | Production schema name |
+=========================+===============================+==============================+
| Initial state | main_2019 | main_2019 |
+-------------------------+-------------------------------+------------------------------+
| Start a new version | main_2020 | main_2019 |
+-------------------------+-------------------------------+------------------------------+
| Do the changes | main_2020 | main_2019 |
+-------------------------+-------------------------------+------------------------------+
| Publish the new version | main_2020 | main_2020 |
+-------------------------+-------------------------------+------------------------------+


Initial state
Expand Down