class CreateShiftOffs < ActiveRecord::Migration def change create_table :shift_offs do |t| t.integer :organization_id t.text :name t.time :time t.text :am_pm t.timestamps end end def down drop_table :shift_offs end end