18F/dolores-landingham-slack-bot

View on GitHub
db/migrate/20151021183449_add_time_zone_to_employees.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddTimeZoneToEmployees < ActiveRecord::Migration
  def change
    add_column :employees, :time_zone, :string, null: false, default: "Eastern Time (US & Canada)"
  end
end