diff options
author | Ryan Cobb <rcobb@gitlab.com> | 2019-07-09 15:31:28 -0600 |
---|---|---|
committer | Ryan Cobb <rcobb@gitlab.com> | 2019-07-09 17:02:08 -0600 |
commit | df8a56e630a4f4df93fbc54de938f31542539d31 (patch) | |
tree | dd995a9294569374fe48b244c972b0b5456100d9 /db/fixtures | |
parent | 68b37a99f4032deb9b1f196451a09c051274480c (diff) | |
download | gitlab-ce-df8a56e630a4f4df93fbc54de938f31542539d31.tar.gz |
Rename Gitlab::Importers module
In order to avoid confusion between Gitlab::Importers module and other
like named modules, this renamed it to Gitlab::DatabaseImporters.
Diffstat (limited to 'db/fixtures')
-rw-r--r-- | db/fixtures/development/99_common_metrics.rb | 2 | ||||
-rw-r--r-- | db/fixtures/production/999_common_metrics.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/db/fixtures/development/99_common_metrics.rb b/db/fixtures/development/99_common_metrics.rb index 0406ce0c8c9..d52f78ea536 100644 --- a/db/fixtures/development/99_common_metrics.rb +++ b/db/fixtures/development/99_common_metrics.rb @@ -1,3 +1,3 @@ # frozen_string_literal: true -::Gitlab::Importers::CommonMetrics::Importer.new.execute +::Gitlab::DatabaseImporters::CommonMetrics::Importer.new.execute diff --git a/db/fixtures/production/999_common_metrics.rb b/db/fixtures/production/999_common_metrics.rb index 0406ce0c8c9..d52f78ea536 100644 --- a/db/fixtures/production/999_common_metrics.rb +++ b/db/fixtures/production/999_common_metrics.rb @@ -1,3 +1,3 @@ # frozen_string_literal: true -::Gitlab::Importers::CommonMetrics::Importer.new.execute +::Gitlab::DatabaseImporters::CommonMetrics::Importer.new.execute |