diff options
| author | Felipe Artur <felipefac@gmail.com> | 2016-12-06 15:59:03 -0200 |
|---|---|---|
| committer | Felipe Artur <felipefac@gmail.com> | 2016-12-15 15:32:49 -0200 |
| commit | a5ccaded656fb215f1f8d503b88c8f28bf90ce68 (patch) | |
| tree | f68c114323f6d345a753f0062c1633449e76db21 /db/migrate | |
| parent | 141faaacf9119ce5d765efe73c6509030ba078cd (diff) | |
| download | gitlab-ce-a5ccaded656fb215f1f8d503b88c8f28bf90ce68.tar.gz | |
Change SlackService to SlackNotificationsServiceissue_22269_fix_eeissue_22269
Diffstat (limited to 'db/migrate')
| -rw-r--r-- | db/migrate/20141006143943_move_slack_service_to_webhook.rb | 6 | ||||
| -rw-r--r-- | db/migrate/20161213172958_change_slack_service_to_slack_notification_service.rb | 14 |
2 files changed, 19 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 8cb120f7007..42e88d6d6e3 100644 --- a/db/migrate/20141006143943_move_slack_service_to_webhook.rb +++ b/db/migrate/20141006143943_move_slack_service_to_webhook.rb @@ -1,7 +1,11 @@ # rubocop:disable all class MoveSlackServiceToWebhook < ActiveRecord::Migration + + DOWNTIME = true + DOWNTIME_REASON = 'Move old fields "token" and "subdomain" to one single field "webhook"' + def change - SlackService.all.each do |slack_service| + SlackNotificationService.all.each do |slack_service| if ["token", "subdomain"].all? { |property| slack_service.properties.key? property } token = slack_service.properties['token'] subdomain = slack_service.properties['subdomain'] diff --git a/db/migrate/20161213172958_change_slack_service_to_slack_notification_service.rb b/db/migrate/20161213172958_change_slack_service_to_slack_notification_service.rb new file mode 100644 index 00000000000..a7278d7b5a6 --- /dev/null +++ b/db/migrate/20161213172958_change_slack_service_to_slack_notification_service.rb @@ -0,0 +1,14 @@ +class ChangeSlackServiceToSlackNotificationService < ActiveRecord::Migration + include Gitlab::Database::MigrationHelpers + + DOWNTIME = true + DOWNTIME_REASON = 'Rename SlackService to SlackNotificationService' + + def up + execute("UPDATE services SET type = 'SlackNotificationService' WHERE type = 'SlackService'") + end + + def down + execute("UPDATE services SET type = 'SlackService' WHERE type = 'SlackNotificationService'") + end +end |
