diff options
author | Jasper Maes <jaspermaes.jm@gmail.com> | 2019-01-04 23:35:38 +0100 |
---|---|---|
committer | Jasper Maes <jaspermaes.jm@gmail.com> | 2019-01-05 00:29:25 +0100 |
commit | 51934c412fa3f123a52baa49ce949f75e9d665bc (patch) | |
tree | 5a05536a26b25ecf3b5e16a62bd3ce884fb00958 | |
parent | 7380364240a26d184d67edb1fe7ae0fc07217e0f (diff) | |
download | gitlab-ce-51934c412fa3f123a52baa49ce949f75e9d665bc.tar.gz |
ActiveRecord::Migration -> ActiveRecord::Migration[5.0] for AddIndexesToCiBuildsAndPipelines
-rw-r--r-- | changelogs/unreleased/deprecated-migration-inheritance-2.yml | 5 | ||||
-rw-r--r-- | db/migrate/20181119132520_add_indexes_to_ci_builds_and_pipelines.rb | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/changelogs/unreleased/deprecated-migration-inheritance-2.yml b/changelogs/unreleased/deprecated-migration-inheritance-2.yml new file mode 100644 index 00000000000..467a521dbd4 --- /dev/null +++ b/changelogs/unreleased/deprecated-migration-inheritance-2.yml @@ -0,0 +1,5 @@ +--- +title: ActiveRecord::Migration -> ActiveRecord::Migration[5.0] for AddIndexesToCiBuildsAndPipelines +merge_request: 24167 +author: Jasper Maes +type: other 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 |