diff options
author | Rémy Coutable <remy@rymai.me> | 2018-12-18 10:10:58 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-12-18 10:10:58 +0000 |
commit | 7a143215c33c6746a0b6b35a8503b9fb918cb405 (patch) | |
tree | ae4b42dd5489c3fe6632c5febdb402f789d1b515 /db | |
parent | 3146bb5c0bd42649e8132a736733b9b0484baaa0 (diff) | |
parent | b9e67b7f3bda09e929f65901c78d9159600949fa (diff) | |
download | gitlab-ce-7a143215c33c6746a0b6b35a8503b9fb918cb405.tar.gz |
Merge branch 'deprecated-directly-inheriting-migration' into 'master'
Fix deprecation: Directly inheriting from ActiveRecord::Migration is deprecated.
See merge request gitlab-org/gitlab-ce!23884
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20181123144235_create_suggestions.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20181123144235_create_suggestions.rb b/db/migrate/20181123144235_create_suggestions.rb index bcc4d8c538b..1723f6de7eb 100644 --- a/db/migrate/20181123144235_create_suggestions.rb +++ b/db/migrate/20181123144235_create_suggestions.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -class CreateSuggestions < ActiveRecord::Migration +class CreateSuggestions < ActiveRecord::Migration[5.0] DOWNTIME = false def change |