2022-01-26 12:08:38 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Database
|
|
|
|
module LooseForeignKeys
|
|
|
|
def self.definitions_by_table
|
|
|
|
@definitions_by_table ||= definitions.group_by(&:to_table).with_indifferent_access.freeze
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.definitions
|
|
|
|
@definitions ||= loose_foreign_keys_yaml.flat_map do |child_table_name, configs|
|
|
|
|
configs.map { |config| build_definition(child_table_name, config) }
|
|
|
|
end.freeze
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.build_definition(child_table_name, config)
|
|
|
|
parent_table_name = config.fetch('table')
|
|
|
|
|
|
|
|
ActiveRecord::ConnectionAdapters::ForeignKeyDefinition.new(
|
|
|
|
child_table_name,
|
|
|
|
parent_table_name,
|
|
|
|
{
|
|
|
|
column: config.fetch('column'),
|
|
|
|
on_delete: config.fetch('on_delete').to_sym,
|
|
|
|
gitlab_schema: GitlabSchema.table_schema(child_table_name)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.loose_foreign_keys_yaml
|
2022-04-04 11:22:00 +05:30
|
|
|
@loose_foreign_keys_yaml ||= YAML.load_file(self.loose_foreign_keys_yaml_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.loose_foreign_keys_yaml_path
|
|
|
|
@loose_foreign_keys_yaml_path ||= Rails.root.join('config/gitlab_loose_foreign_keys.yml')
|
2022-01-26 12:08:38 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
private_class_method :build_definition
|
|
|
|
private_class_method :loose_foreign_keys_yaml
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|