summaryrefslogtreecommitdiff
path: root/db/migrate/20161227192806_rename_slack_and_mattermost_notification_services.rb
blob: 50ad74372274219f2f4f9861c0266d3eff343e46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class RenameSlackAndMattermostNotificationServices < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    update_column_in_batches(:services, :type, 'SlackService') do |table, query|
      query.where(table[:type].eq('SlackNotificationService'))
    end

    update_column_in_batches(:services, :type, 'MattermostService') do |table, query|
      query.where(table[:type].eq('MattermostNotificationService'))
    end
  end

  def down
    update_column_in_batches(:services, :type, 'SlackNotificationService') do |table, query|
      query.where(table[:type].eq('SlackService'))
    end

    update_column_in_batches(:services, :type, 'MattermostNotificationService') do |table, query|
      query.where(table[:type].eq('MattermostService'))
    end
  end
end