Add created_by to invoice and show it

This commit is contained in:
Patrick Gansterer 2016-02-17 16:11:01 +01:00 committed by wvengen
parent 76ea0cc411
commit 3d6f908102
10 changed files with 28 additions and 3 deletions

View file

@ -0,0 +1,5 @@
class AddCreatedByUserIdToInvoice < ActiveRecord::Migration
def change
add_column :invoices, :created_by_user_id, :integer
end
end