Do not seed the database when the configured seed user already exists

 #1315

Dominik Sander vor 9 Jahren
Ursprung
Commit
e32067862f
1 geänderte Dateien mit 6 neuen Zeilen und 0 gelöschten Zeilen
  1. 6 0
      db/seeds.rb

+ 6 - 0
db/seeds.rb

@@ -2,6 +2,12 @@
2 2
 # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3 3
 
4 4
 user = User.find_or_initialize_by(:email => ENV['SEED_EMAIL'] || "admin@example.com")
5
+
6
+if user.persisted?
7
+  puts "User with email '#{user.email}' already exists, not seeding."
8
+  exit
9
+end
10
+
5 11
 user.username = ENV['SEED_USERNAME'] || "admin"
6 12
 user.password = ENV['SEED_PASSWORD'] || "password"
7 13
 user.password_confirmation = ENV['SEED_PASSWORD'] || "password"