Use next instead of return in task (#4787)

local
Akihiko Odaki 7 years ago committed by Eugen Rochko
parent 579c7a88e0
commit a789315361
  1. 2
      lib/tasks/mastodon.rake

@ -273,7 +273,7 @@ namespace :mastodon do
desc 'Remove deprecated preview cards'
task remove_deprecated_preview_cards: :environment do
return unless ActiveRecord::Base.connection.table_exists? 'deprecated_preview_cards'
next unless ActiveRecord::Base.connection.table_exists? 'deprecated_preview_cards'
class DeprecatedPreviewCard < ActiveRecord::Base
self.inheritance_column = false

Loading…
Cancel
Save