1315103a7d
This new role allows users to create invoices without role_finance. Users can then only modify their own created invoices until somebody with the role_finance sets the paid_on value.
5 lines
162 B
Ruby
5 lines
162 B
Ruby
class AddRoleInvoicesToGroup < ActiveRecord::Migration
|
|
def change
|
|
add_column :groups, :role_invoices, :boolean, :default => false, :null => false
|
|
end
|
|
end
|