CMSgov/dpc-app

View on GitHub
dpc-web/db/migrate/20191007160000_add_organization_id_to_users.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddOrganizationIdToUsers < ActiveRecord::Migration[5.2]
  def change
    add_column :users, :organization_id, :integer

    add_index :users, :organization_id
  end
end