CMSgov/dpc-app

View on GitHub
dpc-web/db/migrate/20200123163410_add_registered_organization_id_to_fhir_endpoints.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddRegisteredOrganizationIdToFhirEndpoints < ActiveRecord::Migration[5.2]
  def change
    add_column :fhir_endpoints, :registered_organization_id, :integer

    add_index :fhir_endpoints, :registered_organization_id
  end
end