2020-08-07 01:14:14 +02:00
|
|
|
class AddRoleInvoicesToGroup < ActiveRecord::Migration[4.2]
|
2016-02-17 21:07:35 +01:00
|
|
|
def change
|
2023-05-12 13:01:12 +02:00
|
|
|
add_column :groups, :role_invoices, :boolean, default: false, null: false
|
2016-02-17 21:07:35 +01:00
|
|
|
end
|
|
|
|
end
|