gitlab-org--gitlab-foss/db/migrate/20191008142331_add_ref_coun...

12 lines
246 B
Ruby

# 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