CMSgov/dpc-app

View on GitHub
dpc-web/db/migrate/20200427154230_remove_vendor_id_and_provider_id_from_organizations.rb

Summary

Maintainability
A
0 mins
Test Coverage
class RemoveVendorIdAndProviderIdFromOrganizations < ActiveRecord::Migration[5.2]
  def change
    remove_column :organizations, :vendor_id
    remove_column :organizations, :provider_id
  end
end