debian-mirror-gitlab/db/migrate/20191008142331_add_ref_count_to_push_event_payloads.rb
2019-12-21 20:55:43 +05:30

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