aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20180301142531_create_simple_exporters.rb
blob: c007546c297f834eb2af5ea14ed275afebc2abf1 (plain)
1
2
3
4
5
6
7
class CreateSimpleExporters < ActiveRecord::Migration
  def change
    rename_table :simple_importers, :simple_interfaces
    add_column :simple_interfaces, :type, :string
    SimpleInterface.update_all type: :SimpleImporter
  end
end