Commit 0f6221e7 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Make services migration more reliable

parent b821a1bd
class SerializeServiceProperties < ActiveRecord::Migration class SerializeServiceProperties < ActiveRecord::Migration
def change def change
add_column :services, :properties, :text unless column_exists?(:services, :properties)
add_column :services, :properties, :text
end
Service.reset_column_information Service.reset_column_information
associations = associations =
...@@ -19,18 +22,21 @@ class SerializeServiceProperties < ActiveRecord::Migration ...@@ -19,18 +22,21 @@ class SerializeServiceProperties < ActiveRecord::Migration
:api_version, :jira_issue_transition_id], :api_version, :jira_issue_transition_id],
} }
Service.all.each do |service| Service.find_each(batch_size: 500).each do |service|
associations[service.type.to_sym].each do |attribute| associations[service.type.to_sym].each do |attribute|
service.send("#{attribute}=", service.attributes[attribute.to_s]) service.send("#{attribute}=", service.attributes[attribute.to_s])
end end
service.save
service.save(validate: false)
end end
remove_column :services, :project_url, :string if column_exists?(:services, :project_url)
remove_column :services, :subdomain, :string remove_column :services, :project_url, :string
remove_column :services, :room, :string remove_column :services, :subdomain, :string
remove_column :services, :recipients, :text remove_column :services, :room, :string
remove_column :services, :api_key, :string remove_column :services, :recipients, :text
remove_column :services, :token, :string remove_column :services, :api_key, :string
remove_column :services, :token, :string
end
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment