Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20191008142331_add_ref_count_to_push_event_payloads.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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