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
path: root/doc
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2016-04-14 18:07:58 +0300
committerRobert Speicher <robert@gitlab.com>2016-04-14 18:07:58 +0300
commit39f6cfcc3eb6d8c52e936a576ac4a8c9b15169fe (patch)
treec1725458c1fcc9c17f08351046b114704a8e1aee /doc
parent64776ab2b4ef40519e75eb73ae946d2c1f774aa6 (diff)
parenta54af831bae023770bf9b2633cc45ec0d5f5a66a (diff)
Merge branch 'rake-db-reset' into 'master'
Use rake db:reset instead of db:setup See merge request !3721
Diffstat (limited to 'doc')
-rw-r--r--doc/development/rake_tasks.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/rake_tasks.md b/doc/development/rake_tasks.md
index 9f3fd69fc4e..6d04b9590e6 100644
--- a/doc/development/rake_tasks.md
+++ b/doc/development/rake_tasks.md
@@ -9,7 +9,7 @@ bundle exec rake setup
```
The `setup` task is a alias for `gitlab:setup`.
-This tasks calls `db:setup` to create the database, calls `add_limits_mysql` that adds limits to the database schema in case of a MySQL database and finally it calls `db:seed_fu` to seed the database.
+This tasks calls `db:reset` to create the database, calls `add_limits_mysql` that adds limits to the database schema in case of a MySQL database and finally it calls `db:seed_fu` to seed the database.
Note: `db:setup` calls `db:seed` but this does nothing.
## Run tests