18F/dolores-landingham-slack-bot

View on GitHub
db/migrate/20160430175239_add_slack_user_id_to_employee.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddSlackUserIdToEmployee < ActiveRecord::Migration
  def change
    add_column :employees, :slack_user_id, :string
    add_index :employees, :slack_user_id
  end
end