From b9e67b7f3bda09e929f65901c78d9159600949fa Mon Sep 17 00:00:00 2001 From: Jasper Maes Date: Mon, 17 Dec 2018 18:37:32 +0100 Subject: Fix deprecation: Directly inheriting from ActiveRecord::Migration is deprecated. --- db/migrate/20181123144235_create_suggestions.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'db') 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 -- cgit v1.2.1