Invoice cancelling

This commit is contained in:
Martin Lensment 2015-04-27 11:15:09 +03:00
parent 56d7f9f2e2
commit a26ce110b2
17 changed files with 113 additions and 25 deletions

View file

@ -0,0 +1,5 @@
class AddCancelledAtToInvoice < ActiveRecord::Migration
def change
add_column :invoices, :cancelled_at, :datetime
end
end