4376167a04
This new table will be used to store the external_dashboard_url which allows users to add a link to their external dashboards (ex Grafana) to the Metrics dashboard.
14 lines
418 B
Ruby
14 lines
418 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateProjectMetricsSettings < ActiveRecord::Migration[5.0]
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
create_table :project_metrics_settings, id: :int, primary_key: :project_id, default: nil do |t|
|
|
t.string :external_dashboard_url, null: false
|
|
t.foreign_key :projects, column: :project_id, on_delete: :cascade
|
|
end
|
|
end
|
|
end
|