CMSgov/dpc-app

View on GitHub
dpc-web/db/migrate/20200124204655_drop_index_from_fhir_endpoints.rb

Summary

Maintainability
A
0 mins
Test Coverage
class DropIndexFromFhirEndpoints < ActiveRecord::Migration[5.2]
  def change
    change_column_null :fhir_endpoints, :organization_id, true
    remove_index :fhir_endpoints, :organization_id
  end
end