Sha256: 6a1b41f701139fe41ace5c079dde7c0556ae227bb059f4b5f46f00efe9e6a660
Contents?: true
Size: 885 Bytes
Versions: 21
Compression:
Stored size: 885 Bytes
Contents
class AddAddressFieldsToStockLocation < ActiveRecord::Migration[4.2] def change remove_column :spree_stock_locations, :address_id add_column :spree_stock_locations, :address1, :string add_column :spree_stock_locations, :address2, :string add_column :spree_stock_locations, :city, :string add_column :spree_stock_locations, :state_id, :integer add_column :spree_stock_locations, :state_name, :string add_column :spree_stock_locations, :country_id, :integer add_column :spree_stock_locations, :zipcode, :string add_column :spree_stock_locations, :phone, :string usa = Spree::Country.where(iso: 'US').first # In case USA isn't found. # See https://github.com/spree/spree/issues/3115 country = usa || Spree::Country.first Spree::Country.reset_column_information Spree::StockLocation.update_all(country_id: country) end end
Version data entries
21 entries across 21 versions & 1 rubygems