class AddTimestampsToServiceGroups < ActiveRecord::Migration[6.0]
  def change
    change_table :ServiceOpGroups, bulk: true do |t|
      t.timestamps null: true
      t.change :Description, :string, null: true, limit: 64
    end
  end
end
