6 lines
158 B
Ruby
6 lines
158 B
Ruby
class AddImageDescriptionToBudgetInvestments < ActiveRecord::Migration
|
|
def change
|
|
add_column :budget_investments, :image_description, :string
|
|
end
|
|
end
|