20141216183111_remove_operating_system_from_software_database.rb 231 Bytes
class RemoveOperatingSystemFromSoftwareDatabase < ActiveRecord::Migration
  def up
    remove_column :software_databases, :operating_system
  end

  def down
    add_column :software_databases, :operating_system, :string
  end
end