6 lines
151 B
Ruby
6 lines
151 B
Ruby
class AddPriceFieldsToSpendingProposals < ActiveRecord::Migration
|
|
def change
|
|
add_column :spending_proposals, :price_first_year, :float
|
|
end
|
|
end
|