diff options
author | Alfredo Sumaran <alfredo@gitlab.com> | 2016-10-05 18:05:16 -0500 |
---|---|---|
committer | Alfredo Sumaran <alfredo@gitlab.com> | 2016-10-13 14:16:35 -0500 |
commit | cc874d9167b7ba5531aeade09f69ecdc1057a0ee (patch) | |
tree | b6845480bfac02ef34ac97e79446b43470db8c05 /.gitlab-ci.yml | |
parent | 54bfe70795e289b86485b2a57d72b6711e4994bd (diff) | |
download | gitlab-ce-cc874d9167b7ba5531aeade09f69ecdc1057a0ee.tar.gz |
Fix column limit on mysql
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8708eae1b2a..2c2edd8e9e0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,7 +22,7 @@ before_script: - bundle --version - '[ "$USE_BUNDLE_INSTALL" != "true" ] || retry bundle install --without postgres production --jobs $(nproc) "${FLAGS[@]}"' - retry gem install knapsack - - '[ "$SETUP_DB" != "true" ] || bundle exec rake db:drop db:create db:schema:load db:migrate' + - '[ "$SETUP_DB" != "true" ] || bundle exec rake db:drop db:create db:schema:load db:migrate add_limits_mysql' stages: - prepare |