summaryrefslogtreecommitdiff
path: root/db/migrate/20190422082247_create_project_metrics_settings.rb
blob: 177c4820a0cf79df1aa5c362a6e713c2defc63d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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 # rubocop:disable Migration/PreventStrings
      t.foreign_key :projects, column: :project_id, on_delete: :cascade
    end
  end
end