summaryrefslogtreecommitdiff
path: root/db/migrate/20210121100038_add_devops_adoption_group_segment.rb
blob: 619657e7f564b42e3d0f5094020138c0d891909a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class AddDevopsAdoptionGroupSegment < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_column :analytics_devops_adoption_segments, :namespace_id, :integer, if_not_exists: true
    add_concurrent_index :analytics_devops_adoption_segments, :namespace_id, unique: true
  end

  def down
    remove_column :analytics_devops_adoption_segments, :namespace_id
  end
end