foodsoft/db/migrate/20160217164552_add_break_to...

7 lines
157 B
Ruby
Raw Normal View History

class AddBreakToGroup < ActiveRecord::Migration
def change
add_column :groups, :break_start, :date
add_column :groups, :break_end, :date
end
end