Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-03-29 06:09:08 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-03-29 06:09:08 +0300
commit4535b534a87365512074ddf18410415705be730b (patch)
tree395be3dc06b429a795fcc93627c628263b66a737 /doc/development/database_debugging.md
parent4ca7380c7cd644ab63a801b593e9a581e48a7b0e (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/database_debugging.md')
-rw-r--r--doc/development/database_debugging.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/database_debugging.md b/doc/development/database_debugging.md
index dc64b59018b..67ec1b3c4f1 100644
--- a/doc/development/database_debugging.md
+++ b/doc/development/database_debugging.md
@@ -29,10 +29,10 @@ If you just want to delete everything and start over with sample data (approxima
also does `db:reset` and runs DB-specific migrations:
```shell
-bundle exec rake dev:setup RAILS_ENV=development
+bundle exec rake db:setup RAILS_ENV=development
```
-If your test DB is giving you problems, it is safe to nuke it because it doesn't contain important
+If your test DB is giving you problems, it is safe to delete everything because it doesn't contain important
data:
```shell