summaryrefslogtreecommitdiff
path: root/db/migrate/20160419120017_add_metrics_packet_size.rb
blob: c759427c59031c7c2df8bd99886db56fb2ea4e18 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddMetricsPacketSize < ActiveRecord::Migration
  def change
    add_column :application_settings, :metrics_packet_size, :integer, default: 1
  end
end