Fix rubocop issue in db migration

This commit is contained in:
luisramos0
2019-02-26 14:54:24 +00:00
parent a0594f7616
commit 7b05eebc5b

View File

@@ -1,7 +1,7 @@
class DeleteAccountInvoicesAdjustments < ActiveRecord::Migration
def up
Spree::Adjustment
.where(:source_type => 'BillablePeriod')
.where(source_type: 'BillablePeriod')
.destroy_all
end