0fc9f9d3e7
DB schema generated by a migration may look different in rails 4 and 5 (because rails 5 may use different default values). For this reason it's important to explicitly set for which rails version a migration was written for. See https://stackoverflow.com/questions/35929869/activerecordmigration-deprecation-warning-asks-for-rails-version-but-im-no/35930912#35930912
22 lines
875 B
Ruby
22 lines
875 B
Ruby
# rubocop:disable all
|
|
class MoveSlackServiceToWebhook < ActiveRecord::Migration[4.2]
|
|
|
|
DOWNTIME = true
|
|
DOWNTIME_REASON = 'Move old fields "token" and "subdomain" to one single field "webhook"'
|
|
|
|
def change
|
|
SlackService.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']
|
|
webhook = "https://#{subdomain}.slack.com/services/hooks/incoming-webhook?token=#{token}"
|
|
slack_service.properties['webhook'] = webhook
|
|
slack_service.properties.delete('token')
|
|
slack_service.properties.delete('subdomain')
|
|
# Room is configured on the Slack side
|
|
slack_service.properties.delete('room')
|
|
slack_service.save(validate: false)
|
|
end
|
|
end
|
|
end
|
|
end
|