Fix typo in address migration

This commit is contained in:
Maikel Linke
2022-05-17 16:45:19 +10:00
committed by Nihal Mohammed
parent 870eb8961e
commit d27d98419f

View File

@@ -1,6 +1,6 @@
class RemoveBillAddressesWithNullPhone < ActiveRecord::Migration[6.1]
class BillAddress < ActiveRecord::Base
self.table_name "spree_addresses"
self.table_name = "spree_addresses"
scope :invalid, -> { where(phone: nil) }
end