diff options
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20190326164045_import_common_metrics_knative.rb | 17 | ||||
-rw-r--r-- | db/schema.rb | 2 |
2 files changed, 18 insertions, 1 deletions
diff --git a/db/migrate/20190326164045_import_common_metrics_knative.rb b/db/migrate/20190326164045_import_common_metrics_knative.rb new file mode 100644 index 00000000000..340ec1e1f75 --- /dev/null +++ b/db/migrate/20190326164045_import_common_metrics_knative.rb @@ -0,0 +1,17 @@ +# frozen_string_literal: true + +class ImportCommonMetricsKnative < ActiveRecord::Migration[5.0] + include Gitlab::Database::MigrationHelpers + + require Rails.root.join('db/importers/common_metrics_importer.rb') + + DOWNTIME = false + + def up + Importers::CommonMetricsImporter.new.execute + end + + def down + # no-op + end +end diff --git a/db/schema.rb b/db/schema.rb index 1a50c6efbc7..ca5b04e810a 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20190325165127) do +ActiveRecord::Schema.define(version: 20190326164045) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" |