mingujo/UCBerkeley_Housing

View on GitHub
db/migrate/20161031013803_add_sent_boolean_to_timeslots.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddSentBooleanToTimeslots < ActiveRecord::Migration
  def change
    add_column :timeslots, :new_schedule_email_sent, :boolean, :default => false
    add_column :timeslots, :cancellation_sent, :boolean, :default => false
  end
end