summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-02-25 18:22:08 +0100
committerDouwe Maan <douwe@gitlab.com>2015-02-25 22:55:37 +0100
commit4803af45dfbd516890b3ab31fa55b93009174d63 (patch)
treefae77b1975c3435abb3c4360c5a641258f3fe79d /db
parenta30a56634d3ea44ccfc69c037324b502456f9aba (diff)
downloadgitlab-ce-4803af45dfbd516890b3ab31fa55b93009174d63.tar.gz
Prevent another migration from failing.
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20141006143943_move_slack_service_to_webhook.rb2
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