Add pickups role

This commit is contained in:
Patrick Gansterer 2017-11-15 23:58:11 +01:00
parent 4c41a99fde
commit ac11ba1cc1
14 changed files with 42 additions and 15 deletions

View file

@ -0,0 +1,5 @@
class AddRolePickupsToGroup < ActiveRecord::Migration
def change
add_column :groups, :role_pickups, :boolean, default: false, null: false
end
end