summaryrefslogtreecommitdiff
path: root/db/migrate/20210824055322_add_project_namespace_id_to_project.rb
blob: 9397ad4aab299b07c46ee96d196a801bcb6db0d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

class AddProjectNamespaceIdToProject < ActiveRecord::Migration[6.1]
  include Gitlab::Database::MigrationHelpers

  disable_ddl_transaction!

  def up
    with_lock_retries do
      # This is being added to Projects as a replacement for Namespace
      # See https://gitlab.com/gitlab-org/gitlab/-/issues/337099
      add_column :projects, :project_namespace_id, :bigint # rubocop: disable Migration/AddColumnsToWideTables
    end
  end

  def down
    with_lock_retries do
      remove_column :projects, :project_namespace_id
    end
  end
end