Commit 62c0e5ab authored by Robert Speicher's avatar Robert Speicher

Redcarpet didn't like unordered lists deeply nested in an ordered one

I don't really like making these an ordered list since they're mutually
exclusive, but I think the structure is what's important.

[ci skip]
parent eae04950
...@@ -111,14 +111,14 @@ each installation. ...@@ -111,14 +111,14 @@ each installation.
# socket: /tmp/mysql.sock # socket: /tmp/mysql.sock
``` ```
1. Depending on the values for `adapter`, you will have to use different 1. Depending on the values for `adapter`, you will have to use one of three
commands to perform the database dump. different commands to perform the database dump.
**NOTE:** For any of the commands below, you'll need to substitute the **NOTE:** For any of the commands below, you'll need to substitute the
values `IN_UPPERCASE` with the corresponding values from your **CI values `IN_UPPERCASE` with the corresponding values from your **CI
installation's** `config/database.yml` files above. installation's** `config/database.yml` files above.
- If both your CI and CE (or EE) installations use **mysql2** as the `adapter`, use 1. If both your CI and CE (or EE) installations use **mysql2** as the `adapter`, use
`mysqldump`: `mysqldump`:
```sh ```sh
...@@ -129,7 +129,7 @@ each installation. ...@@ -129,7 +129,7 @@ each installation.
ci_triggers ci_variables ci_web_hooks > gitlab_ci.sql ci_triggers ci_variables ci_web_hooks > gitlab_ci.sql
``` ```
- If both your CI and CE (or EE) installations use **postgresql** as the 1. If both your CI and CE (or EE) installations use **postgresql** as the
`adapter`, use `pg_dump`: `adapter`, use `pg_dump`:
```sh ```sh
...@@ -137,9 +137,9 @@ each installation. ...@@ -137,9 +137,9 @@ each installation.
--data-only GITLAB_CI_DATABASE -t "ci_*" > gitlab_ci.sql --data-only GITLAB_CI_DATABASE -t "ci_*" > gitlab_ci.sql
``` ```
- If your CI installation uses **mysql2** as the `adapter` and your CE (or 1. If your CI installation uses **mysql2** as the `adapter` and your CE (or
EE) installation uses **postgresql**, use `mysqldump` to dump the database EE) installation uses **postgresql**, use `mysqldump` to dump the
and then convert it to PostgreSQL using [mysql-postgresql-converter]: database and then convert it to PostgreSQL using [mysql-postgresql-converter]:
```sh ```sh
# Dump existing MySQL database first # Dump existing MySQL database first
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment