diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-02-25 18:22:08 +0100 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-02-25 22:55:37 +0100 |
commit | 4803af45dfbd516890b3ab31fa55b93009174d63 (patch) | |
tree | fae77b1975c3435abb3c4360c5a641258f3fe79d /db | |
parent | a30a56634d3ea44ccfc69c037324b502456f9aba (diff) | |
download | gitlab-ce-4803af45dfbd516890b3ab31fa55b93009174d63.tar.gz |
Prevent another migration from failing.
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20141006143943_move_slack_service_to_webhook.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20141006143943_move_slack_service_to_webhook.rb b/db/migrate/20141006143943_move_slack_service_to_webhook.rb index a8e07033a5d..5836cd6b8db 100644 --- a/db/migrate/20141006143943_move_slack_service_to_webhook.rb +++ b/db/migrate/20141006143943_move_slack_service_to_webhook.rb @@ -10,7 +10,7 @@ class MoveSlackServiceToWebhook < ActiveRecord::Migration slack_service.properties.delete('subdomain') # Room is configured on the Slack side slack_service.properties.delete('room') - slack_service.save + slack_service.save(validate: false) end end end |