Skip to content

Commit

Permalink
Conform store seed with migration default
Browse files Browse the repository at this point in the history
  • Loading branch information
BravoSimone committed Jun 6, 2017
1 parent 27c8a0a commit 41ad1d8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions core/db/default/spree/stores.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
unless Spree::Store.where(code: 'spree').exists?
Spree::Store.new do |s|
s.code = 'spree'
s.name = 'Spree Demo Site'
s.url = 'demo.spreecommerce.com'
s.mail_from_address = 'spree@example.com'
s.cart_tax_country_iso = 'US'
s.name = 'Sample Store'
s.url = 'example.com'
s.mail_from_address = 'store@example.com'
end.save!
end

0 comments on commit 41ad1d8

Please sign in to comment.