From 772bf82000630bb9d9ac22fa3436e9197c0ecad9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Wed, 1 Jun 2022 11:09:21 +0200 Subject: [PATCH] Fix linting in database README.md --- database/README.md | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/database/README.md b/database/README.md index d6cf84518..e951f4530 100644 --- a/database/README.md +++ b/database/README.md @@ -1,32 +1,39 @@ # database ## Project setup -``` + +```bash yarn install ``` ## Upgrade migrations production -``` + +```bash yarn up ``` ## Upgrade migrations development -``` + +```bash yarn dev_up ``` ## Downgrade migrations production -``` + +```bash yarn down ``` ## Downgrade migrations development -``` + +```bash yarn dev_down ``` ## Reset database -``` + +```bash yarn dev_reset ``` + Runs all down migrations and after this all up migrations.