0
0
Fork 0

Autofix Rubocop Style/EmptyMethod (#23732)

This commit is contained in:
Nick Schonning 2023-02-19 20:18:54 -05:00 committed by GitHub
parent fef6c59b3a
commit 8ef09813a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 16 deletions

View file

@ -100,8 +100,7 @@ class MigrateAccountConversations < ActiveRecord::Migration[5.2]
end
end
def down
end
def down; end
private

View file

@ -12,6 +12,5 @@ class PreserveOldLayoutForExistingUsers < ActiveRecord::Migration[5.2]
end
end
def down
end
def down; end
end

View file

@ -10,6 +10,5 @@ class ResetWebAppSecret < ActiveRecord::Migration[5.2]
web_app.save!
end
def down
end
def down; end
end