253512eb51
In some foodcoops it is possible that ordergroups make a break. During that they e.g. pay reduced or no membership fees and do not need to do work for the foodcoop. This new fields make this visible to all members.
6 lines
157 B
Ruby
6 lines
157 B
Ruby
class AddBreakToGroup < ActiveRecord::Migration
|
|
def change
|
|
add_column :groups, :break_start, :date
|
|
add_column :groups, :break_end, :date
|
|
end
|
|
end
|