Adds missing budget_id to investments

This commit is contained in:
kikito
2016-05-20 17:55:51 +02:00
parent 10625532d0
commit cf0b7a53b0
2 changed files with 7 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
class AddBudgetIdToInvestments < ActiveRecord::Migration
def change
add_reference :budget_investments, :budget, index: true
end
end