Welcome to mirror list, hosted at ThFree Co, Russian Federation.

foreign_key_definition.rb.template « templates « partitioning « gitlab « generators « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9cf5d085d1603af4ca9607662d70e3d11e4b5a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# frozen_string_literal: true

class <%= migration_class_name %> < Gitlab::Database::Migration[<%= Gitlab::Database::Migration.current_version %>]
  milestone '<%= Gitlab.current_milestone %>'

  disable_ddl_transaction!

  SOURCE_TABLE_NAME = :<%= source_table_name %>
  TARGET_TABLE_NAME = :<%= target_table_name %>
  COLUMN = :<%= foreign_key_column %>
  TARGET_COLUMN = :<%= fk_target_column %>
  FK_NAME = :<%= partitioned_foreign_key_name %>
  PARTITION_COLUMN = :<%= partitioning_column %>

  def up
    add_concurrent_foreign_key(
      SOURCE_TABLE_NAME,
      TARGET_TABLE_NAME,
      column: [PARTITION_COLUMN, COLUMN],
      target_column: [PARTITION_COLUMN, TARGET_COLUMN],
      validate: false,
      reverse_lock_order: true,
      on_update: :cascade,
      on_delete: :<%= fk_on_delete_option %>,
      name: FK_NAME
    )
  end

  def down
    with_lock_retries do
      remove_foreign_key_if_exists(
        SOURCE_TABLE_NAME,
        TARGET_TABLE_NAME,
        name: FK_NAME,
        reverse_lock_order: true
      )
    end
  end
end