Remove unused user role from seeding

We only ever check for the admin role.
This commit is contained in:
Maikel Linke
2024-12-19 08:54:39 +11:00
parent fa82f80ab9
commit a529d95fc5

View File

@@ -7,7 +7,6 @@ MailConfiguration.apply!
puts "[db:seed] Seeding Roles"
Spree::Role.where(:name => "admin").first_or_create
Spree::Role.where(:name => "user").first_or_create
puts "[db:seed] Seeding Countries"
unless Spree::Country.find_by(iso: ENV['DEFAULT_COUNTRY_CODE'])