class ChangeServiceOpportunities < ActiveRecord::Migration[6.0]
  def change
    change_table :ServiceOps, bulk: true do |t|
      t.timestamps null: true
      t.change :Description, :text, null: true
    end
  end
end
