6 lines
156 B
Ruby
6 lines
156 B
Ruby
class AddPreviousHeadingIdToInvestments < ActiveRecord::Migration
|
|
def change
|
|
add_column :budget_investments, :previous_heading_id, :integer
|
|
end
|
|
end
|