foodsoft/db/migrate/20160217124256_add_created_...

6 lines
144 B
Ruby
Raw Normal View History

class AddCreatedByUserIdToInvoice < ActiveRecord::Migration[4.2]
2016-02-17 16:11:01 +01:00
def change
add_column :invoices, :created_by_user_id, :integer
end
end