summaryrefslogtreecommitdiff
path: root/db/migrate/20191008142331_add_ref_count_to_push_event_payloads.rb
blob: 72621971dbbfeabc10c1acaaa860bc22b1626a44 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddRefCountToPushEventPayloads < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :push_event_payloads, :ref_count, :integer
  end
end