Merge branch 'depracated-migration-inheritance' into 'master'

ActiveRecord::Migration -> ActiveRecord::Migration[5.0] for AddIndexesToCiBuildsAndPipelines

See merge request gitlab-org/gitlab-ce!24167
This commit is contained in:
Rémy Coutable 2019-01-07 11:55:48 +00:00
commit 30209219a4
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
title: ActiveRecord::Migration -> ActiveRecord::Migration[5.0] for AddIndexesToCiBuildsAndPipelines
merge_request: 24167
author: Jasper Maes
type: other

View file

@ -1,6 +1,6 @@
# frozen_string_literal: true
class AddIndexesToCiBuildsAndPipelines < ActiveRecord::Migration
class AddIndexesToCiBuildsAndPipelines < ActiveRecord::Migration[5.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false