Skip to content

Instantly share code, notes, and snippets.

@chen7897499
Created March 18, 2016 01:17
Show Gist options
  • Save chen7897499/86a0482e94737fa7b7b6 to your computer and use it in GitHub Desktop.
Save chen7897499/86a0482e94737fa7b7b6 to your computer and use it in GitHub Desktop.
require 'pry'
class AddExternalSystemId < ActiveRecord::Migration
def up
Rails.application.paths["app/models"].each do |model_path|
Dir["#{Rails.root}/#{model_path}/*/*.rb"].each { |file| require file }
end
models = ActiveRecord::Base.send(:subclasses)
binding.pry
tables = models.delete_if {|a| a.to_s =~ /Cmi::MdmRelations|Irm::GlobalSetting|Delayed::Backend::ActiveRecord::Job|ActiveRecord::SessionStore::Session/i }.delete_if {|a| a.column_names.include?("external_system_id") }.map {|a| a.table_name }
binding.pry
tables.each do |table_name|
begin
add_column table_name, :external_system_id, :string, :limit => 32
rescue Mysql2::Error
binding.pry
puts table_name
next
end
end
end
def down
tables = ActiveRecord::Base.connection.tables.map {|a| a.to_sym }
binding.pry
tables.each do |table_name|
begin
remove_column table_name, :external_system_id
rescue ActiveRecord::StatementInvalid
next
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment