Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper Maes <jaspermaes.jm@gmail.com>2018-12-17 20:37:32 +0300
committerJasper Maes <jaspermaes.jm@gmail.com>2018-12-17 20:50:49 +0300
commitb9e67b7f3bda09e929f65901c78d9159600949fa (patch)
treee92c0617546fd1839e779279d9d6d415f81ba31e /db/migrate/20181123144235_create_suggestions.rb
parent4a10c813e726d09216c534bb0ad0ae50a0400259 (diff)
Fix deprecation: Directly inheriting from ActiveRecord::Migration is deprecated.
Diffstat (limited to 'db/migrate/20181123144235_create_suggestions.rb')
-rw-r--r--db/migrate/20181123144235_create_suggestions.rb2
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