summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200511220023_validate_projects_foreign_key_to_namespaces.rb
blob: 37a761507fcc9f84020deb6f1ffb2d06565735e1 (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 ValidateProjectsForeignKeyToNamespaces < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  FK_NAME = 'fk_projects_namespace_id'

  def up
    # Validate the FK added with 20200511080113_add_projects_foreign_key_to_namespaces.rb
    validate_foreign_key :projects, :namespace_id, name: FK_NAME
  end

  def down
    # no-op: No need to invalidate the foreign key
    # The inconsistent data are permanently fixed with the data migration
    #  `20200511083541_cleanup_projects_with_missing_namespace.rb`
    # even if it is rolled back.
    # If there is an issue with the FK, we'll roll back the migration that adds the FK
  end
end