11 lines
241 B
Ruby
11 lines
241 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddIdentifierToPrometheusMetric < ActiveRecord::Migration
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
add_column :prometheus_metrics, :identifier, :string
|
|
end
|
|
end
|