diff options
author | Rémy Coutable <remy@rymai.me> | 2019-01-07 11:55:48 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2019-01-07 11:55:48 +0000 |
commit | 30209219a4327aa8614c937ac1de0ab5566b2599 (patch) | |
tree | 3201743d63c020e7daac40a5879b1b5fca97f9d1 /db | |
parent | 4af1c77b291f7c7757143087f69720d26958153d (diff) | |
parent | 51934c412fa3f123a52baa49ce949f75e9d665bc (diff) | |
download | gitlab-ce-30209219a4327aa8614c937ac1de0ab5566b2599.tar.gz |
Merge branch 'depracated-migration-inheritance' into 'master'
ActiveRecord::Migration -> ActiveRecord::Migration[5.0] for AddIndexesToCiBuildsAndPipelines
See merge request gitlab-org/gitlab-ce!24167
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20181119132520_add_indexes_to_ci_builds_and_pipelines.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20181119132520_add_indexes_to_ci_builds_and_pipelines.rb b/db/migrate/20181119132520_add_indexes_to_ci_builds_and_pipelines.rb index adbc3928b26..cb01fa113eb 100644 --- a/db/migrate/20181119132520_add_indexes_to_ci_builds_and_pipelines.rb +++ b/db/migrate/20181119132520_add_indexes_to_ci_builds_and_pipelines.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -class AddIndexesToCiBuildsAndPipelines < ActiveRecord::Migration +class AddIndexesToCiBuildsAndPipelines < ActiveRecord::Migration[5.0] include Gitlab::Database::MigrationHelpers DOWNTIME = false |