I have two roles option in my registration page seller and buyer i was using the seed.rb
file for this but know i changed the names to seller and customer and pushed it to heroku by doing
heroku run rake:db seed
Everything worked well but now on my registration page am getting four roles options seller, buyer, Seller, Customer I want only the Seller And Customer one what should i do
my seed.rb
['Customer', 'Seller'].each do |role|
Role.find_or_create_by({name: role})
end