6 lines
150 B
Ruby
6 lines
150 B
Ruby
class RemoveInternalCommentsFromInvestment < ActiveRecord::Migration
|
|
def change
|
|
remove_column :budget_investments, :internal_comments
|
|
end
|
|
end
|