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:
Diffstat (limited to 'scripts/utils.sh')
-rw-r--r--scripts/utils.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/utils.sh b/scripts/utils.sh
index 6faa701f0ce..08c33f3f67e 100644
--- a/scripts/utils.sh
+++ b/scripts/utils.sh
@@ -12,3 +12,11 @@ retry() {
done
return 1
}
+
+setup_db() {
+ bundle exec rake db:drop db:create db:schema:load db:migrate
+
+ if [ "$GITLAB_DATABASE" = "mysql" ]; then
+ bundle exec rake add_limits_mysql
+ fi
+}